C# 클래스 MdxClient.MdxParameterCollection

상속: System.Data.Common.DbParameterCollection
파일 보기 프로젝트 열기: DynamicTyped/MdxClient 1 사용 예제들

공개 메소드들

메소드 설명
Add ( MdxParameter value ) : MdxParameter

Adds an MdxParameter object to the MdxParameterCollection collection.

Add ( string parameterName, object value ) : MdxParameter

Creates a new MdxParameter object with the specified name and value and adds it to the collection.

AddRange ( Array values ) : void

Adds an array of items with the specified values to the MdxParameterCollection.

AddRange ( MdxParameter values ) : void

Adds an array of items with the specified values to the MdxParameterCollection.

Clear ( ) : void

Removes all the MdxParameter objects from the MdxParameterCollection.

Contains ( MdxParameter value ) : bool

Indicates whether an MdxParameter with the specified property exists in the collection.

Contains ( object value ) : bool

Indicates whether an MdxParameter with the specified property exists in the collection.

Contains ( string value ) : bool

Indicates whether an MdxParameter with the specified name exists in the collection.

CopyTo ( Array array, int index ) : void

Copies an array of items to the collection starting at the specified index.

CopyTo ( MdxParameter array, int index ) : void

Copies an array of items to the collection starting at the specified index.

GetEnumerator ( ) : IEnumerator

Exposes the GetEnumerator method, which supports a simple iteration over a collection by a .NET Framework data provider.

IndexOf ( MdxParameter value ) : int

Returns the index of the specified MdxParameter object.

IndexOf ( object value ) : int

Returns the index of the specified MdxParameter object.

IndexOf ( string parameterName ) : int

Returns the index of the specified MdxParameter object.

Insert ( int index, MdxParameter value ) : void
Insert ( int index, object value ) : void

Inserts the specified index of the MdxParameter object with the specified name into the collection at the specified index.

Remove ( MdxParameter value ) : void

Removes the specified MdxParameter object from the collection.

Remove ( object value ) : void

Removes the specified MdxParameter object from the collection.

RemoveAt ( int index ) : void

Removes the MdxParameter object at the specified from the collection.

RemoveAt ( string parameterName ) : void

Removes a specified MdxParameter object from the collection.

보호된 메소드들

메소드 설명
GetParameter ( int index ) : DbParameter
GetParameter ( string parameterName ) : DbParameter
SetParameter ( int index, DbParameter value ) : void
SetParameter ( string parameterName, DbParameter value ) : void

비공개 메소드들

메소드 설명
Add ( object value ) : int
Find ( string parameterName ) : MdxParameter
MdxParameterCollection ( ) : System
RangeCheck ( string parameterName ) : int
RangeCheck ( int index ) : void
RemoveIndex ( int index ) : void
Replace ( int index, MdxParameter newValue ) : void
Validate ( int index, MdxParameter value ) : void
ValidateType ( object value ) : void

메소드 상세

Add() 공개 메소드

Adds an MdxParameter object to the MdxParameterCollection collection.
public Add ( MdxParameter value ) : MdxParameter
value MdxParameter The MdxParameter object to be added.
리턴 MdxParameter

Add() 공개 메소드

Creates a new MdxParameter object with the specified name and value and adds it to the collection.
public Add ( string parameterName, object value ) : MdxParameter
parameterName string The name of the MdxParameter to add.
value object The value of the MdxParameter object to be created.
리턴 MdxParameter

AddRange() 공개 메소드

Adds an array of items with the specified values to the MdxParameterCollection.
public AddRange ( Array values ) : void
values System.Array An array of values of type MdxParameter to add to the collection.
리턴 void

AddRange() 공개 메소드

Adds an array of items with the specified values to the MdxParameterCollection.
public AddRange ( MdxParameter values ) : void
values MdxParameter An array of values of type MdxParameter to add to the collection.
리턴 void

Clear() 공개 메소드

Removes all the MdxParameter objects from the MdxParameterCollection.
public Clear ( ) : void
리턴 void

Contains() 공개 메소드

Indicates whether an MdxParameter with the specified property exists in the collection.
public Contains ( MdxParameter value ) : bool
value MdxParameter The value of the MdxParameter to look for in the collection.
리턴 bool

Contains() 공개 메소드

Indicates whether an MdxParameter with the specified property exists in the collection.
public Contains ( object value ) : bool
value object The value of the MdxParameter to look for in the collection.
리턴 bool

Contains() 공개 메소드

Indicates whether an MdxParameter with the specified name exists in the collection.
public Contains ( string value ) : bool
value string The name of the MdxParameter to look for in the collection.
리턴 bool

CopyTo() 공개 메소드

Copies an array of items to the collection starting at the specified index.
public CopyTo ( Array array, int index ) : void
array System.Array The array of items to copy to the collection.
index int The index in the collection to copy the items.
리턴 void

CopyTo() 공개 메소드

Copies an array of items to the collection starting at the specified index.
public CopyTo ( MdxParameter array, int index ) : void
array MdxParameter The array of items to copy to the collection.
index int The index in the collection to copy the items.
리턴 void

GetEnumerator() 공개 메소드

Exposes the GetEnumerator method, which supports a simple iteration over a collection by a .NET Framework data provider.
public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

GetParameter() 보호된 메소드

protected GetParameter ( int index ) : DbParameter
index int
리턴 System.Data.Common.DbParameter

GetParameter() 보호된 메소드

protected GetParameter ( string parameterName ) : DbParameter
parameterName string
리턴 System.Data.Common.DbParameter

IndexOf() 공개 메소드

Returns the index of the specified MdxParameter object.
public IndexOf ( MdxParameter value ) : int
value MdxParameter The MdxParameter object in the collection.
리턴 int

IndexOf() 공개 메소드

Returns the index of the specified MdxParameter object.
public IndexOf ( object value ) : int
value object The MdxParameter object in the collection.
리턴 int

IndexOf() 공개 메소드

Returns the index of the specified MdxParameter object.
public IndexOf ( string parameterName ) : int
parameterName string The name of the MdxParameter object in the collection.
리턴 int

Insert() 공개 메소드

public Insert ( int index, MdxParameter value ) : void
index int
value MdxParameter
리턴 void

Insert() 공개 메소드

Inserts the specified index of the MdxParameter object with the specified name into the collection at the specified index.
public Insert ( int index, object value ) : void
index int The index at which to insert the MdxParameter object.
value object The MdxParameter object to insert into the collection.
리턴 void

Remove() 공개 메소드

Removes the specified MdxParameter object from the collection.
public Remove ( MdxParameter value ) : void
value MdxParameter The MdxParameter object to remove.
리턴 void

Remove() 공개 메소드

Removes the specified MdxParameter object from the collection.
public Remove ( object value ) : void
value object The MdxParameter object to remove.
리턴 void

RemoveAt() 공개 메소드

Removes the MdxParameter object at the specified from the collection.
public RemoveAt ( int index ) : void
index int The index where the MdxParameter object is located.
리턴 void

RemoveAt() 공개 메소드

Removes a specified MdxParameter object from the collection.
public RemoveAt ( string parameterName ) : void
parameterName string The name of the MdxParameter object to remove.
리턴 void

SetParameter() 보호된 메소드

protected SetParameter ( int index, DbParameter value ) : void
index int
value System.Data.Common.DbParameter
리턴 void

SetParameter() 보호된 메소드

protected SetParameter ( string parameterName, DbParameter value ) : void
parameterName string
value System.Data.Common.DbParameter
리턴 void