IDENTITY_ATTRIBUTE Structure

Contains metadata attribute information about an IDefinitionIdentity instance.

Syntax

typedef struct _IDENTITY_ATTRIBUTE {  
    LPCWSTR  pszNamespace;  
    LPCWSTR  pszName;  
    LPCWSTR  pszValue;  
} IDENTITY_ATTRIBUTE;  

Members

Member Description
pszNamespace A pointer to a null-terminated character string that contains the namespace the attribute is in.
pszName A pointer to a null-terminated character string that contains the name of the attribute.
pszValue A pointer to a null-terminated character string that contains the value of the attribute.

Remarks

The IDENTITY_ATTRIBUTE structure contains three pointers to null-terminated character strings. These three strings describe one attribute.

An instance of an IDENTITY_ATTRIBUTE structure is associated with an instance of an IDENTITY_ATTRIBUTE_BLOB structure. The IDENTITY_ATTRIBUTE structure contains the actual strings, and the corresponding IDENTITY_ATTRIBUTE_BLOB structure lists the offsets to the three strings listed in the IDENTITY_ATTRIBUTE structure.

Requirements

Platforms: See System Requirements.

Header: Isolation.h

.NET Framework Versions: Available since 2.0

See also