Initializes a new instance of the ParameterSchema class

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

Syntax

C#
public ParameterSchema(
	CommandSchema command,
	string name,
	ParameterDirection direction,
	DbType dataType,
	string nativeType,
	int size,
	byte precision,
	int scale,
	bool allowDbNull,
	ExtendedProperty[] extendedProperties
)
Visual Basic
Public Sub New ( 
	command As CommandSchema,
	name As String,
	direction As ParameterDirection,
	dataType As DbType,
	nativeType As String,
	size As Integer,
	precision As Byte,
	scale As Integer,
	allowDbNull As Boolean,
	extendedProperties As ExtendedProperty()
)

Parameters

command
Type: SchemaExplorer..::..CommandSchema
name
Type: System..::..String
direction
Type: System.Data..::..ParameterDirection
dataType
Type: System.Data..::..DbType
nativeType
Type: System..::..String
size
Type: System..::..Int32
precision
Type: System..::..Byte
scale
Type: System..::..Int32
allowDbNull
Type: System..::..Boolean
extendedProperties
Type: array<SchemaExplorer..::..ExtendedProperty>[]()[][]

See Also