C# Class MdxClient.MdxParameter

Represents a parameter to an MdxCommand
Inheritance: System.Data.Common.DbParameter, ICloneable
Mostrar archivo Open project: DynamicTyped/MdxClient Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
Clone ( ) : object
MdxParameter ( ) : System

Initializes a new instance of the MdxParameter class.

MdxParameter ( string parameterName, object value ) : System

Initializes a new instance of the MdxParameter class that sets the name and a value for the parameter.

ResetDbType ( ) : void

Resets the type associated with this MdxParameter

ToString ( ) : string

Gets a string that contains the ParameterName.

Method Details

Clone() public method

public Clone ( ) : object
return object

MdxParameter() public method

Initializes a new instance of the MdxParameter class.
public MdxParameter ( ) : System
return System

MdxParameter() public method

Initializes a new instance of the MdxParameter class that sets the name and a value for the parameter.
public MdxParameter ( string parameterName, object value ) : System
parameterName string The name of the parameter.
value object The value of the parameter.
return System

ResetDbType() public method

Resets the type associated with this MdxParameter
public ResetDbType ( ) : void
return void

ToString() public method

Gets a string that contains the ParameterName.
public ToString ( ) : string
return string