VpnAppId VpnAppId VpnAppId VpnAppId Class

Definition

Represents an application identifier, which can be a file path, a package family name, or a fully qualified binary name (FQBN) string.

public : sealed class VpnAppId : IVpnAppIdpublic sealed class VpnAppId : IVpnAppIdPublic NotInheritable Class VpnAppId Implements IVpnAppId// This API is not available in Javascript.
Attributes
Windows 10 requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)
Capabilities
networkingVpnProvider

Remarks

The app ID for a Win32 app is either a file path or a Fully Qualified Binary Name (FQBN). For other apps, the app ID is the Package Family Name.

Constructors

VpnAppId(VpnAppIdType, String) VpnAppId(VpnAppIdType, String) VpnAppId(VpnAppIdType, String) VpnAppId(VpnAppIdType, String)

Creates a VpnAppId object with specified app ID and type.

public : VpnAppId(VpnAppIdType type, PlatForm::String value)public VpnAppId(VpnAppIdType type, String value)Public Sub New(type As VpnAppIdType, value As String)// This API is not available in Javascript.
Parameters
type
VpnAppIdType VpnAppIdType VpnAppIdType VpnAppIdType

The type of app ID to be created.

value
PlatForm::String String String String

The value of the app ID to be created. Value must be correct for the given type value.

Additional features and requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)
Capabilities
networkingVpnProvider

Properties

Type Type Type Type

Gets or sets the type of the app ID.

public : VpnAppIdType Type { get; set; }public VpnAppIdType Type { get; set; }Public ReadWrite Property Type As VpnAppIdType// This API is not available in Javascript.
Value
VpnAppIdType VpnAppIdType VpnAppIdType VpnAppIdType

An enum value that corresponds to the type of the app ID.

Additional features and requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)
Capabilities
networkingVpnProvider

Value Value Value Value

Gets or sets the value of the app ID.

public : PlatForm::String Value { get; set; }public string Value { get; set; }Public ReadWrite Property Value As string// This API is not available in Javascript.
Value
PlatForm::String string string string

The app ID. The format of the ID must be correct for the VpnAppId.Type value.

Additional features and requirements
Device family
Windows 10 (introduced v10.0.10240.0)
API contract
Windows.Foundation.UniversalApiContract (introduced v1)
Capabilities
networkingVpnProvider