Creates a new instance of the CommandSchema object.

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

Syntax

C#
public CommandSchema(
	DatabaseSchema database,
	string name,
	string owner,
	DateTime dateCreated,
	ExtendedProperty[] extendedProperties
)
Visual Basic
Public Sub New ( 
	database As DatabaseSchema,
	name As String,
	owner As String,
	dateCreated As DateTime,
	extendedProperties As ExtendedProperty()
)

Parameters

database
Type: SchemaExplorer..::..DatabaseSchema
The database that the command belongs to.
name
Type: System..::..String
The name of the command.
owner
Type: System..::..String
The owner of the command.
dateCreated
Type: System..::..DateTime
The date this command was created.
extendedProperties
Type: array<SchemaExplorer..::..ExtendedProperty>[]()[][]
The array of extended properties for the command.

See Also