ClearCanvas.Common.Rest.RestClient.Get C# (CSharp) Метод

Get() публичный Метод

Convenience method for issuing an HTTP GET request.
public Get ( string resource, object>.Dictionary args ) : System.Net.Response
resource string
args object>.Dictionary
Результат System.Net.Response
		public Response Get(string resource, Dictionary<string, object> args)
		{
			return CreateRequest(resource, args).Get();
		}

Same methods

RestClient::Get ( string resource, string args ) : System.Net.Response