GetPropertyInfo

Use GetPropertyInfo to retrieve a list of properties and their attributes for an IDO. GetPropertyInfo requests are constructed using the LoadCollectionRequestData IDO protocol class.

Properties

These properties are available on the LoadCollectionRequestData class:

Property Data Type Description
IDOName System.String Identifies the IDO used to execute the request
IncludeClassNotesFlag System.Boolean If set to True, the ClassNotesExist property in the response is set to indicate if any class notes exist for this IDO

This property is only available if you use the GetResponse client class method.

GetPropertyInfo example

GetPropertyInfoResponseData  response; 

response = this.Context.Commands.GetPropertyInfo( "SLItems" ); 

foreach ( PropertyInfo idoProp in response.Properties ) 
{ 
   String propertyName = idoProp.Name; 
   // etc. 
}