C# 클래스 Artemis.Engine.Utilities.UriTree.UriUtilities

파일 보기 프로젝트 열기: ArtemisEngine/Artemis-Engine 1 사용 예제들

공개 메소드들

메소드 설명
AllButFirstPart ( string name ) : string

Return everything in a Uri except for the first part of the name.

AllButLastPart ( string name ) : string

Return everything in a Uri except for the last part of the name.

GetFirstPart ( string name ) : string

Get the first part of a Uri name. Example: GetFirstPart("a.b.c") returns "a"

GetLastPart ( string name ) : string

Get the last part of a Uri name. Example: GetLastPart("a.b.c") returns "c"

GetParts ( string name ) : string[]

Get the separate parts of a Uri name. Example: GetParts("a.b.c") returns {"a", "b", "c"}

메소드 상세

AllButFirstPart() 공개 정적인 메소드

Return everything in a Uri except for the first part of the name.
public static AllButFirstPart ( string name ) : string
name string
리턴 string

AllButLastPart() 공개 정적인 메소드

Return everything in a Uri except for the last part of the name.
public static AllButLastPart ( string name ) : string
name string
리턴 string

GetFirstPart() 공개 정적인 메소드

Get the first part of a Uri name. Example: GetFirstPart("a.b.c") returns "a"
public static GetFirstPart ( string name ) : string
name string
리턴 string

GetLastPart() 공개 정적인 메소드

Get the last part of a Uri name. Example: GetLastPart("a.b.c") returns "c"
public static GetLastPart ( string name ) : string
name string
리턴 string

GetParts() 공개 정적인 메소드

Get the separate parts of a Uri name. Example: GetParts("a.b.c") returns {"a", "b", "c"}
public static GetParts ( string name ) : string[]
name string
리턴 string[]