C# 클래스 RabbitMQ.Client.Content.PrimitiveParser

Utility class for extracting typed values from strings.
파일 보기 프로젝트 열기: rabbitmq/rabbitmq-dotnet-client 1 사용 예제들

공개 메소드들

메소드 설명
CreateProtocolViolationException ( string targetType, object source ) : Exception

Creates the protocol violation exception.

ParseBool ( string value ) : bool

Attempt to parse a string representation of a bool.

ParseByte ( string value ) : byte

Attempt to parse a string representation of a byte.

ParseDouble ( string value ) : double

Attempt to parse a string representation of a double.

ParseFloat ( string value ) : float

Attempt to parse a string representation of a float.

ParseInt ( string value ) : int

Attempt to parse a string representation of an int.

ParseLong ( string value ) : long

Attempt to parse a string representation of a long.

ParseShort ( string value ) : short

Attempt to parse a string representation of a short.

메소드 상세

CreateProtocolViolationException() 공개 정적인 메소드

Creates the protocol violation exception.
public static CreateProtocolViolationException ( string targetType, object source ) : Exception
targetType string Type of the target.
source object The source.
리턴 System.Exception

ParseBool() 공개 정적인 메소드

Attempt to parse a string representation of a bool.
public static ParseBool ( string value ) : bool
value string
리턴 bool

ParseByte() 공개 정적인 메소드

Attempt to parse a string representation of a byte.
public static ParseByte ( string value ) : byte
value string
리턴 byte

ParseDouble() 공개 정적인 메소드

Attempt to parse a string representation of a double.
public static ParseDouble ( string value ) : double
value string
리턴 double

ParseFloat() 공개 정적인 메소드

Attempt to parse a string representation of a float.
public static ParseFloat ( string value ) : float
value string
리턴 float

ParseInt() 공개 정적인 메소드

Attempt to parse a string representation of an int.
public static ParseInt ( string value ) : int
value string
리턴 int

ParseLong() 공개 정적인 메소드

Attempt to parse a string representation of a long.
public static ParseLong ( string value ) : long
value string
리턴 long

ParseShort() 공개 정적인 메소드

Attempt to parse a string representation of a short.
public static ParseShort ( string value ) : short
value string
리턴 short