Method | Description | |
---|---|---|
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 | |
return | string |
public static AllButLastPart ( string name ) : string | ||
name | string | |
return | string |
public static GetFirstPart ( string name ) : string | ||
name | string | |
return | string |
public static GetLastPart ( string name ) : string | ||
name | string | |
return | string |
public static GetParts ( string name ) : string[] | ||
name | string | |
return | string[] |