ESRI.ArcGIS.Client.Toolkit.SignInDialog.GetSuffix C# (CSharp) Method

GetSuffix() private static method

private static GetSuffix ( string url ) : string
url string
return string
		private static string GetSuffix(string url)
		{
			url = Regex.Replace(url, "http.+/rest/services/?", "", RegexOptions.IgnoreCase);
			url = Regex.Replace(url, "(/(MapServer|GeocodeServer|GPServer|GeometryServer|ImageServer|NAServer|FeatureServer|GeoDataServer|GlobeServer|MobileServer)).*", "$1", RegexOptions.IgnoreCase);
			return url;
		}
		#endregion