C# 클래스 Akka.Configuration.Hocon.HoconLiteral

This class represents a string literal element in a HOCON (Human-Optimized Config Object Notation) configuration string. akka { actor { provider = "Akka.Remote.RemoteActorRefProvider, Akka.Remote" } }
상속: IHoconElement
파일 보기 프로젝트 열기: rogeralsing/akka.net 1 사용 예제들

공개 메소드들

메소드 설명
GetArray ( ) : IList

Retrieves a list of elements associated with this element.

GetString ( ) : string

Retrieves the string representation of this element.

IsArray ( ) : bool

Determines whether this element is an array.

IsString ( ) : bool

Determines whether this element is a string.

ToString ( ) : string

Returns the string representation of this element.

메소드 상세

GetArray() 공개 메소드

Retrieves a list of elements associated with this element.
/// This element is a string literal. It is not an array. /// Therefore this method will throw an exception. ///
public GetArray ( ) : IList
리턴 IList

GetString() 공개 메소드

Retrieves the string representation of this element.
public GetString ( ) : string
리턴 string

IsArray() 공개 메소드

Determines whether this element is an array.
public IsArray ( ) : bool
리턴 bool

IsString() 공개 메소드

Determines whether this element is a string.
public IsString ( ) : bool
리턴 bool

ToString() 공개 메소드

Returns the string representation of this element.
public ToString ( ) : string
리턴 string