Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ApplicationIdentity Constructor (String^)

 

Initializes a new instance of the ApplicationIdentity class.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

public:
ApplicationIdentity(
	String^ applicationIdentityFullName
)

Parameters

applicationIdentityFullName
Type: System::String^

The full name of the application.

Exception Condition
ArgumentNullException

applicationIdentityFullName is null.

The format of the applicationIdentityFullName parameter is a comma-delimited Unicode string that begins with the name, as follows:


applicationURL
#
deploymentIdentity
\
applicationIdentity

Where deploymentIdentity =


deploymentManifest
, Version = 
Major.Minor.Build.Revision
, Culture = 
CultureInfo
, PublicKeyToken=
TokenNumber
, processorArchitecture=
processorArchitecture

And applicationIdentity =


applicationName
, Version = 
Major.Minor.Build.Revision
, Culture = 
CultureInfo
, PublicKeyToken=
TokenNumber
, processorArchitecture=
processorArchitecture
, type=
OsType

The following is an example of the full name for an application named ActivationContext:

http://testserver/ActivationContext/ActivationContext.application
#ActivationContext.application, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ae13aad84c1a3490, processorArchitecture=msil
\ActivationContext.exe, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ae13aad84c1a3490, processorArchitecture=msil, type=win32

The default value for processor architecture is "msil", and the default value for type is "win32".

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft