mscorlib(4.0.0.0) API with additions
ManifestKinds.cs
1 namespace System.Security
2 {
4  [Flags]
5  public enum ManifestKinds
6  {
8  None = 0x0,
10  Deployment = 0x1,
12  Application = 0x2,
15  }
16 }
The manifest is for deployment and application. The is the default value for verifying signatures.
ManifestKinds
Represents the type of manifest that the signature information applies to.
Definition: ManifestKinds.cs:5
The manifest is for deployment only.