contextType Complex Type
- Article
-
-
The contextType complex type specifies the connenction context of a Mobile Broadband device.
<xs:complexType name="contextType">
<xs:sequence>
<xs:element name="AccessString"
minOccurs="0"
>
<xs:simpleType>
<xs:restriction
base="token"
>
<xs:minLength
value="1"
/>
<xs:maxLength
value="100"
/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="UserLogonCred"
minOccurs="0"
>
<xs:complexType>
<xs:sequence>
<xs:element name="UserName"
type="nameType"
/>
<xs:element name="IgnorePassword"
type="boolean"
minOccurs="0"
/>
<xs:element name="Password"
type="string"
minOccurs="0"
/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Compression"
minOccurs="0"
>
<xs:simpleType>
<xs:restriction
base="token"
>
<xs:enumeration
value="DISABLE"
/>
<xs:enumeration
value="ENABLE"
/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="AuthProtocol"
minOccurs="0"
>
<xs:simpleType>
<xs:restriction
base="token"
>
<xs:enumeration
value="NONE"
/>
<xs:enumeration
value="PAP"
/>
<xs:enumeration
value="CHAP"
/>
<xs:enumeration
value="MsCHAPv2"
/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
Child elements
Element |
Type |
Description |
AccessString |
|
APN or dial string to be used to establish a data connection
|
AuthProtocol |
|
Authentication protocol to be used for activating a PDP context.
|
Compression |
|
Specifies if compression will be used at the data link for header and data transfer
|
IgnorePassword |
boolean |
How to handle passwords when upgrading profiles.
|
Password |
string |
Password used to authenticate a user
|
UserLogonCred |
|
Log on credentials for a connection.
|
UserName |
nameType |
User name for logon
|
Requirements
Requirement |
Value |
Minimum supported client
|
Windows 7 [desktop apps | UWP apps]
|
Minimum supported server
|
None supported
|