Get the type from the specified ref
Namespace: Rally.RestApiAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax public static string GetTypeFromRef(
string reference
)
Public Shared Function GetTypeFromRef (
reference As String
) As String
public:
static String^ GetTypeFromRef(
String^ reference
)
static member GetTypeFromRef :
reference : string -> string
Parameters
- reference
- Type: SystemString
The ref to get the type from
Return Value
Type:
StringThe type of the specified ref
Examples string fullyQualifiedRef = "https://rally1.rallydev.com/slm/webservice/v2.0/user/1234";
string relativeRef = Ref.GetTypeFromRef(fullyQualifiedRef);
See Also