IASCOMPONENTPROPERTIES enumeration (sdoias.h)

The values of the IASCOMPONENTPROPERTIES enumeration type enumerate identifiers for an SDO object.

Syntax

typedef enum _IASCOMPONENTPROPERTIES {
  PROPERTY_COMPONENT_ID,
  PROPERTY_COMPONENT_PROG_ID,
  PROPERTY_COMPONENT_START
} IASCOMPONENTPROPERTIES;

Constants

 
PROPERTY_COMPONENT_ID
The component ID for the SDO object.
PROPERTY_COMPONENT_PROG_ID
The program ID for the SDO object.
PROPERTY_COMPONENT_START
The start value for RADIUS Protocol properties, defined for convenience.

Remarks

The following code snippet demonstrates obtaining the component ID of an SDO object. The variable pSdo points to an ISdo interface.

HRESULT    hr;
_variant_t    vtProperty;
hr = pSdo->GetProperty(PROPERTY_COMPONENT_ID, &vtProperty);

Requirements

Requirement Value
Minimum supported client None supported
Minimum supported server Windows Server 2008
Header sdoias.h

See also

ISdo

ISdo::GetProperty