CLAIM_SECURITY_ATTRIBUTES_INFORMATION structure (winnt.h)
The CLAIM_SECURITY_ATTRIBUTES_INFORMATION structure defines the security attributes for the claim.
Syntax
typedef struct _CLAIM_SECURITY_ATTRIBUTES_INFORMATION {
WORD Version;
WORD Reserved;
DWORD AttributeCount;
union {
PCLAIM_SECURITY_ATTRIBUTE_V1 pAttributeV1;
} Attribute;
} CLAIM_SECURITY_ATTRIBUTES_INFORMATION, *PCLAIM_SECURITY_ATTRIBUTES_INFORMATION;
Members
Version
The version of the security attribute. This must be CLAIM_SECURITY_ATTRIBUTES_INFORMATION_VERSION_V1.
Reserved
This member is currently reserved and must be zero when setting an attribute and is ignored when getting an attribute.
AttributeCount
The number of values.
Attribute
The actual attribute.
Attribute.pAttributeV1
Pointer to an array that contains the AttributeCount member of the CLAIM_SECURITY_ATTRIBUTE_V1 structure.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 8 [desktop apps only] |
Minimum supported server | Windows Server 2012 [desktop apps only] |
Header | winnt.h |