Edit

Share via


_PropertyAccessor.GetProperties(Object) Method

Definition

Obtains the values of the properties specified by the one-dimensional array SchemaNames.

public:
 System::Object ^ GetProperties(System::Object ^ SchemaNames);
public object GetProperties (object SchemaNames);
Public Function GetProperties (SchemaNames As Object) As Object

Parameters

SchemaNames
Object

An array that contains the names of the properties whose values are to be returned. These properties are referenced by namespace. For more information, see Referencing Properties by Namespace

Returns

An Object that represents an array of values of the properties specified in the parameter SchemaNames. The number of elements in the returned array equals the number of elements in the SchemaNames array. If an error occurs for getting a specific property, the Err value will be returned in the corresponding location in the returned array.

Remarks

The array returned by GetProperties can contain elements of different types, depending on the type of the property requested. The type of the array element returned by GetProperties will be the same as the type of the underlying property. Certain raw property types such as PT_OBJECT are unsupported and will raise an error. If you require conversion of the raw property type, for example, from PT_BINARY to a string, or from PT_SYSTIME to a local time, use the helper methods BinaryToString(Object) and UTCToLocalTime(DateTime).

For more information on getting properties using the PropertyAccessor object, see Best Practices for Getting and Setting Properties

Applies to