IVpnCredential
IVpnCredential
IVpnCredential
IVpnCredential
Interface
Definition
Provides an interface for the VPN platform to support requested credentials.
public : interface IVpnCredentialpublic interface IVpnCredentialPublic Interface IVpnCredential// You can use this interface in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
| Capabilities |
networkingVpnProvider
|
Properties
AdditionalPin AdditionalPin AdditionalPin AdditionalPin
Gets an additional PIN supplied by the user, typically when requesting user name, password, and PIN.
public : PlatForm::String AdditionalPin { get; }public string AdditionalPin { get; }Public ReadOnly Property AdditionalPin As string// You can use this property in JavaScript.
- Value
- PlatForm::String string string string
An additional PIN provided by the user.
Additional features and requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
| Capabilities |
networkingVpnProvider
|
CertificateCredential CertificateCredential CertificateCredential CertificateCredential
Gets the certificate that the plug-in was granted access to after requesting it.
public : Certificate CertificateCredential { get; }public Certificate CertificateCredential { get; }Public ReadOnly Property CertificateCredential As Certificate// You can use this property in JavaScript.
Gets the certificate to which we were granted access for use in the VPN connection.
Additional features and requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
| Capabilities |
networkingVpnProvider
|
OldPasswordCredential OldPasswordCredential OldPasswordCredential OldPasswordCredential
Gets the previous credential the user used to log on to the VPN server, as in the case of a password change.
public : PasswordCredential OldPasswordCredential { get; }public PasswordCredential OldPasswordCredential { get; }Public ReadOnly Property OldPasswordCredential As PasswordCredential// You can use this property in JavaScript.
The previous credential the user used to log in to the VPN server.
Additional features and requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
| Capabilities |
networkingVpnProvider
|
PasskeyCredential PasskeyCredential PasskeyCredential PasskeyCredential
Gets password or PIN corresponding to this credential request.
public : PasswordCredential PasskeyCredential { get; }public PasswordCredential PasskeyCredential { get; }Public ReadOnly Property PasskeyCredential As PasswordCredential// You can use this property in JavaScript.
The password or PIN corresponding to this credential request.
Additional features and requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
| Capabilities |
networkingVpnProvider
|