Identity (SoftwareInfo)

MBAE'nin kullanımdan kaldırılacağına dair uyarı

Important

Windows 10, sürüm 1803'den itibaren MBAE uygulama deneyimi bir MO UWP uygulamasıyla değiştirilir. MO UWP uygulamaları hakkında daha fazla bilgi için bkz. UWP mobil geniş bant uygulamaları.

Identity öğesi, uygulamanın yayımcı kimliğini ve uygulama bildirim adını belirtir.

Usage

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

Attributes

Attribute Type Required Description

Name

tns:AsciiIdentifierType

Yes

Uygulama bildirim dosyasında belirtilen uygulamanın adı.

Publisher

tns:DistinguishedNameType

Yes

Uygulamanın yayımcı kimliği.

Child elements

Alt öğe bulunmamaktadır.

Parent elements

Element Description

DeviceCompanionApplications

Bilgisayarda operatörün Mobil Geniş Bant donanımı algılandığında indirilecek uygulamayı belirtir.

XSD

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

<xs:complexType name="IdentityType">
  <xs:attribute name="Name" type="tns:PackageNameType" use="required"/>
  <xs:attribute name="Publisher" type="tns:PublisherType" use="required"/>
</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>

Remarks

Identity öğesi isteğe bağlıdır.