메소드 | 설명 | |
---|---|---|
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"}
|
public static AllButFirstPart ( string name ) : string | ||
name | string | |
리턴 | string |
public static AllButLastPart ( string name ) : string | ||
name | string | |
리턴 | string |