C# 클래스 CrownPeak.SearchG2.Result.Field

Class that wraps a single facet result from a CrownPeak.SearchG2.PlainSearch on a CrownPeak SearchG2 collection.
상속: IField
파일 보기 프로젝트 열기: Crownpeak/Search-Results-Examples

공개 메소드들

메소드 설명
GetAsByteArray ( ) : byte[]

Convert the value of this field into a byte array.

GetAsByteArray ( int index ) : byte[]

Convert the nth value of this multi-valued field into a byte array.

GetAsDouble ( ) : double

Convert the value of this field into a double.

GetAsDouble ( int index ) : double

Convert the nth value of this multi-valued field into a double.

GetAsInt32 ( ) : int

Convert the value of this field into an Int32.

GetAsInt32 ( int index ) : int

Convert the nth value of this multi-valued field into an Int32.

GetAsObject ( ) : object

Convert the value of this field into an Object.

GetAsObject ( int index ) : object

Convert the nth value of this multi-valued field into an Object.

GetAsString ( ) : string

Convert the value of this field into a string.

GetAsString ( int index ) : string

Convert the nth value of this multi-valued field into a string.

GetAsType ( Type type ) : object

Convert the value of this field into the specified Type.

GetAsType ( int index, Type type ) : object

Convert the nth value of this multi-valued field into the specified Type.

GetEnumerator ( ) : IEnumerator

Get an IEnumerator{Object} for this collection.

ToString ( ) : string

Return a string that represents the current Field.

this ( int index ) : object

Get the numbered value from this collection.

비공개 메소드들

메소드 설명
Field ( ) : System
Field ( string name, object value ) : System
System ( ) : System.Collections.IEnumerator

Get an System.Collections.IEnumerator for this collection.

메소드 상세

GetAsByteArray() 공개 메소드

Convert the value of this field into a byte array.
public GetAsByteArray ( ) : byte[]
리턴 byte[]

GetAsByteArray() 공개 메소드

Convert the nth value of this multi-valued field into a byte array.
public GetAsByteArray ( int index ) : byte[]
index int The index of the value to retrieve.
리턴 byte[]

GetAsDouble() 공개 메소드

Convert the value of this field into a double.
public GetAsDouble ( ) : double
리턴 double

GetAsDouble() 공개 메소드

Convert the nth value of this multi-valued field into a double.
public GetAsDouble ( int index ) : double
index int The index of the value to retrieve.
리턴 double

GetAsInt32() 공개 메소드

Convert the value of this field into an Int32.
public GetAsInt32 ( ) : int
리턴 int

GetAsInt32() 공개 메소드

Convert the nth value of this multi-valued field into an Int32.
public GetAsInt32 ( int index ) : int
index int The index of the value to retrieve.
리턴 int

GetAsObject() 공개 메소드

Convert the value of this field into an Object.
public GetAsObject ( ) : object
리턴 object

GetAsObject() 공개 메소드

Convert the nth value of this multi-valued field into an Object.
public GetAsObject ( int index ) : object
index int The index of the value to retrieve.
리턴 object

GetAsString() 공개 메소드

Convert the value of this field into a string.
public GetAsString ( ) : string
리턴 string

GetAsString() 공개 메소드

Convert the nth value of this multi-valued field into a string.
public GetAsString ( int index ) : string
index int The index of the value to retrieve.
리턴 string

GetAsType() 공개 메소드

Convert the value of this field into the specified Type.
public GetAsType ( Type type ) : object
type System.Type The desired result .
리턴 object

GetAsType() 공개 메소드

Convert the nth value of this multi-valued field into the specified Type.
public GetAsType ( int index, Type type ) : object
index int The index of the value to retrieve.
type System.Type The desired result .
리턴 object

GetEnumerator() 공개 메소드

Get an IEnumerator{Object} for this collection.
public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

ToString() 공개 메소드

Return a string that represents the current Field.
public ToString ( ) : string
리턴 string

this() 공개 메소드

Get the numbered value from this collection.
public this ( int index ) : object
index int The index to retrieve.
리턴 object