Try our conversational search powered by Generative AI!

Class DataParameter

Inheritance
System.Object
DataParameter
Implements
System.IComparable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Mediachase.Data.Provider
Assembly: Mediachase.DataProvider.dll
Version: 13.30.0
Syntax
public class DataParameter : IComparable

Constructors

DataParameter(String, DataParameterType)

Declaration
public DataParameter(string name, DataParameterType providerType)
Parameters
Type Name Description
System.String name
DataParameterType providerType

DataParameter(String, DataParameterType, Int32)

Declaration
public DataParameter(string name, DataParameterType providerType, int size)
Parameters
Type Name Description
System.String name
DataParameterType providerType
System.Int32 size

DataParameter(String, Object)

Declaration
public DataParameter(string name, object value)
Parameters
Type Name Description
System.String name
System.Object value

DataParameter(String, Object, DataParameterType)

Declaration
public DataParameter(string name, object value, DataParameterType providerType)
Parameters
Type Name Description
System.String name
System.Object value
DataParameterType providerType

DataParameter(String, Object, DataParameterType, Int32)

Declaration
public DataParameter(string name, object value, DataParameterType providerType, int size)
Parameters
Type Name Description
System.String name
System.Object value
DataParameterType providerType
System.Int32 size

Properties

ColumnName

Declaration
public string ColumnName { get; set; }
Property Value
Type Description
System.String

Direction

Declaration
public ParameterDirection Direction { get; set; }
Property Value
Type Description
System.Data.ParameterDirection

ParamName

Declaration
public string ParamName { get; set; }
Property Value
Type Description
System.String

ProviderType

Declaration
public DataParameterType ProviderType { get; set; }
Property Value
Type Description
DataParameterType

Size

Declaration
public int Size { get; set; }
Property Value
Type Description
System.Int32

UdtTypeName

Gets or sets the type name of the UDT.

Declaration
public string UdtTypeName { get; set; }
Property Value
Type Description
System.String
Remarks

This property can only used if ProviderType is Udt.

Value

Declaration
public object Value { get; set; }
Property Value
Type Description
System.Object

Methods

CompareTo(Object)

Declaration
public int CompareTo(object obj)
Parameters
Type Name Description
System.Object obj
Returns
Type Description
System.Int32

ToString()

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()

Implements

System.IComparable