CellularApnContext.AuthenticationType Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates the authentication method, as defined by CellularApnAuthenticationType, that is used by the access point.
public:
property CellularApnAuthenticationType AuthenticationType { CellularApnAuthenticationType get(); void set(CellularApnAuthenticationType value); };
CellularApnAuthenticationType AuthenticationType();
void AuthenticationType(CellularApnAuthenticationType value);
public CellularApnAuthenticationType AuthenticationType { get; set; }
var cellularApnAuthenticationType = cellularApnContext.authenticationType;
cellularApnContext.authenticationType = cellularApnAuthenticationType;
Public Property AuthenticationType As CellularApnAuthenticationType
Property Value
The authentication type.
Remarks
This property can have one of the following values:
Value | Description |
---|---|
NONE | No authentication protocol. |
PAP | Unencrypted password authentication. |
CHAP | Challenge Handshake Authentication Protocol(CHAP). |
MsCHAPv2 | Use Microsoft’s Challenge Handshake Authentication Protocol(CHAP) v2.0. |