AppContainerNameAndAccess Struct
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.
A struct that holds a Package Family Name (PFN) and access mask.
public value class AppContainerNameAndAccess
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Windows.Security.AccessControl.AccessControlContract, 65536)]
struct AppContainerNameAndAccess
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Windows.Security.AccessControl.AccessControlContract), 65536)]
public struct AppContainerNameAndAccess
var appContainerNameAndAccess = {
appContainerName : /* Your value */,
accessMask : /* Your value */
}
Public Structure AppContainerNameAndAccess
- Inheritance
-
AppContainerNameAndAccess
- Attributes
Examples
var access = new AppContainerNameAndAccess[]
{
new AppContainerNameAndAccess("Contoso.Test.App_12345678",
(uint)(EventWaitHandleRights.Modify |
EventWaitHandleRights.Synchronize));
};
Remarks
The accessMask supports a bitwise combination of its member values.
Fields
accessMask |
The access control rights to be applied to the app container. |
appContainerName |
Specifies the Package Family Name (PFN). |