Initializes a new instance of the CommandResultSchema class

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

Syntax

C#
public CommandResultSchema(
	CommandSchema command,
	string name,
	IEnumerable<CommandResultColumnSchema> columns,
	ExtendedProperty[] extendedProperties
)
Visual Basic
Public Sub New ( 
	command As CommandSchema,
	name As String,
	columns As IEnumerable(Of CommandResultColumnSchema),
	extendedProperties As ExtendedProperty()
)

Parameters

command
Type: SchemaExplorer..::..CommandSchema
The command that the command result schema belongs to.
name
Type: System..::..String
The name of this command result schema.
columns
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'CommandResultColumnSchema>)>)>
The columns that make up this command result schema.
extendedProperties
Type: array<SchemaExplorer..::..ExtendedProperty>[]()[][]
The array of extended properties for the column.

See Also