Gets the extended property collection for a given schema object.

Namespace: SchemaExplorer
Assembly: SchemaExplorer (in SchemaExplorer.dll) Version: 6.0.0.0 (7.0.0.15127)

Syntax

C#
ExtendedProperty[] GetExtendedProperties(
	string connectionString,
	SchemaObjectBase schemaObject
)
Visual Basic
Function GetExtendedProperties ( 
	connectionString As String,
	schemaObject As SchemaObjectBase
) As ExtendedProperty()

Parameters

connectionString
Type: System..::..String
The connection string used to connect to the target database.
schemaObject
Type: SchemaExplorer..::..SchemaObjectBase
Any type that derives from SchemaObjectBase. (E.G. DatabaseSchema, TableSchema, ColumnSchema, ViewSchema, ViewColumnSchema, IndexSchema, CommandSchema, ParameterSchema, PrimaryKeySchema, TableKeySchema)

Return Value

Type: array<ExtendedProperty>[]()[][]
An array of ExtendedProperties for a specific SchemaObjectBase.

See Also