C# 클래스 Net.Http.WebApi.OData.Query.Expressions.ConstantNode

상속: SingleValueNode
파일 보기 프로젝트 열기: TrevorPilley/Net.Http.WebApi.OData 1 사용 예제들

공개 메소드들

메소드 설명
DateTime ( string literalText, System.DateTime value ) : ConstantNode

Gets a ConstantNode which represents a DateTime value.

DateTimeOffset ( string literalText, DateTimeOffset value ) : ConstantNode

Gets a ConstantNode which represents a DateTimeOffset value.

Decimal ( string literalText, decimal value ) : ConstantNode

Gets a ConstantNode which represents a decimal value.

Double ( string literalText, double value ) : ConstantNode

Gets a ConstantNode which represents a double value.

Guid ( string literalText, System.Guid value ) : ConstantNode

Gets a ConstantNode which represents a Guid value.

Int32 ( string literalText, int value ) : ConstantNode

Gets a ConstantNode which represents a 32 bit signed integer value.

Int64 ( string literalText, long value ) : ConstantNode

Gets a ConstantNode which represents a 64 bit signed integer value.

Single ( string literalText, float value ) : ConstantNode

Gets a ConstantNode which represents a float value.

String ( string literalText, string value ) : ConstantNode

Gets a ConstantNode which represents a string value.

Time ( string literalText, System.TimeSpan value ) : ConstantNode

Gets a ConstantNode which represents a time value.

비공개 메소드들

메소드 설명
Boolean ( string literalText, bool value ) : ConstantNode
ConstantNode ( EdmType edmType, string literalText, object value ) : System

Initialises a new instance of the ConstantNode class.

메소드 상세

DateTime() 공개 정적인 메소드

Gets a ConstantNode which represents a DateTime value.
public static DateTime ( string literalText, System.DateTime value ) : ConstantNode
literalText string The literal text.
value System.DateTime The value.
리턴 ConstantNode

DateTimeOffset() 공개 정적인 메소드

Gets a ConstantNode which represents a DateTimeOffset value.
public static DateTimeOffset ( string literalText, DateTimeOffset value ) : ConstantNode
literalText string The literal text.
value DateTimeOffset The value.
리턴 ConstantNode

Decimal() 공개 정적인 메소드

Gets a ConstantNode which represents a decimal value.
public static Decimal ( string literalText, decimal value ) : ConstantNode
literalText string The literal text.
value decimal The value.
리턴 ConstantNode

Double() 공개 정적인 메소드

Gets a ConstantNode which represents a double value.
public static Double ( string literalText, double value ) : ConstantNode
literalText string The literal text.
value double The value.
리턴 ConstantNode

Guid() 공개 정적인 메소드

Gets a ConstantNode which represents a Guid value.
public static Guid ( string literalText, System.Guid value ) : ConstantNode
literalText string The literal text.
value System.Guid The value.
리턴 ConstantNode

Int32() 공개 정적인 메소드

Gets a ConstantNode which represents a 32 bit signed integer value.
public static Int32 ( string literalText, int value ) : ConstantNode
literalText string The literal text.
value int The value.
리턴 ConstantNode

Int64() 공개 정적인 메소드

Gets a ConstantNode which represents a 64 bit signed integer value.
public static Int64 ( string literalText, long value ) : ConstantNode
literalText string The literal text.
value long The value.
리턴 ConstantNode

Single() 공개 정적인 메소드

Gets a ConstantNode which represents a float value.
public static Single ( string literalText, float value ) : ConstantNode
literalText string The literal text.
value float The value.
리턴 ConstantNode

String() 공개 정적인 메소드

Gets a ConstantNode which represents a string value.
public static String ( string literalText, string value ) : ConstantNode
literalText string The literal text.
value string The value.
리턴 ConstantNode

Time() 공개 정적인 메소드

Gets a ConstantNode which represents a time value.
public static Time ( string literalText, System.TimeSpan value ) : ConstantNode
literalText string The literal text.
value System.TimeSpan The value.
리턴 ConstantNode