Condividi tramite


Identity (SoftwareInfo - applicazioni con privilegi)

Avviso di deprecazione di MBAE

Importante

A partire da Windows 10, versione 1803, l'esperienza dell'app MBAE viene sostituita da un'app UWP MO. Per altre informazioni sulle app UWP MO, vedi App UWP per dispositivi mobili UWP.

L'elemento Identity specifica l'identità dell'editore e il nome manifesto dell'applicazione dell'app.

Utilizzo

<Identity Name=”tns:AsciiIdentifierType” Publisher=”tns:DistinguishedNameType” AccessCustomDriver=”xs:boolean” />

Attributi

Attributo Type Obbligatorio Descrizione

Name

tns:AsciiIdentifierType

Nome dell'app come specificato nel file manifesto dell'app.

Publisher

tns:DistinguishedNameType

Identità dell'editore dell'app.

AccessCustomDriver

xs:boolean

No

Se l'app deve avere accesso a un driver personalizzato, impostare questo valore su true.

Elementi figlio

Non sono presenti elementi figlio.

Elementi padre

Elemento Descrizione

Pacchetto

Specifica l'app che deve avere accesso alle interfacce Mobile Broadband con privilegi.

XSD

<xs:element name="Identity" type="tns:IdentityForPrivilegedApplicationsType" />

<xs:complexType name="IdentityForPrivilegedApplicationsType">
  <xs:attribute name="Name" type="tns:PackageNameType" use="required"/>
  <xs:attribute name="Publisher" type="tns:PublisherType" use="required"/>
  <xs:attribute name="AccessCustomDriver" type="xs:boolean" />
</xs:complexType>

<xs:simpleType name="PackageNameType">
  <xs:restriction base="tns:AsciiIdentifierType">
    <xs:minLength value="3"/>
    <xs:maxLength value="50"/>
  </xs:restriction>
</xs:simpleType>

<xs:simpleType name="PublisherType">
  <xs:restriction base="tns:DistinguishedNameType">
    <xs:maxLength value="8192"/>
  </xs:restriction>
</xs:simpleType>

<xs:simpleType name="AsciiIdentifierType">
  <xs:restriction base="tns:AllowedAsciiCharSetType">
    <xs:pattern value="[^_ ]+"/>
  </xs:restriction>
</xs:simpleType>

<xs:simpleType name="DistinguishedNameType">
  <xs:restriction base="tns:NonEmptyStringType">
    <xs:pattern value="(CN|L|O|OU|E|C|S|STREET|T|G|I|SN|DC|SERIALNUMBER|(OID\.(0|[1-9][0-9]*)(\.(0|[1-9][0-9]*))+))=(([^,+="&lt;&gt;#;])+|".*")(, ((CN|L|O|OU|E|C|S|STREET|T|G|I|SN|DC|SERIALNUMBER|(OID\.(0|[1-9][0-9]*)(\.(0|[1-9][0-9]*))+))=(([^,+="&lt;&gt;#;])+|".*")))*"/>
  </xs:restriction>
</xs:simpleType>

<xs:simpleType name="NonEmptyStringType">
  <xs:restriction base="xs:string">
    <xs:minLength value="1"/>
    <xs:maxLength value="32767"/>
    <xs:pattern value="[^\s]|([^\s].*[^\s])"/>
  </xs:restriction>
</xs:simpleType>

<xs:simpleType name="AllowedAsciiCharSetType">
  <xs:restriction base="tns:NonEmptyStringType">
    <xs:pattern value="[-_. A-Za-z0-9]+"/>
  </xs:restriction>
</xs:simpleType>

Osservazioni

L'elemento Identity è facoltativo.