Determine whether the specified string is a reference
Namespace: Rally.RestApiAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax public static bool IsRef(
string reference
)
Public Shared Function IsRef (
reference As String
) As Boolean
public:
static bool IsRef(
String^ reference
)
static member IsRef :
reference : string -> bool
Parameters
- reference
- Type: SystemString
the ref to test
Return Value
Type:
Booleantrue if a ref, false otherwise
Examples bool isValid;
isValid = Ref.IsRef("http://rally1.rallydev.com/slm/webservice/1.32/defect/1234.js");
isValid = Ref.IsRef("https://rally1.rallydev.com/slm/webservice/1.32/defect/abc.js");
See Also