상속: IDisposable
예제 #1
0
 internal static Command Create(string path, RequestType type, RestApiProvider executor)
 {
     if (String.IsNullOrEmpty(path))
     {
         throw new ArgumentNullException("path");
     }
     return(new Command(type, path, executor));
 }
예제 #2
0
 internal static Command Create(string path, RequestType type, RestApiProvider executor)
 {
     if (String.IsNullOrEmpty(path))
         throw new ArgumentNullException("path");
     return new Command(type, path, executor);
 }
예제 #3
0
 private Command(RequestType type, string path, RestApiProvider executor)
 {
     _type = type;
     _path = path;
     _executor = executor;
 }
예제 #4
0
 private Command(RequestType type, string path, RestApiProvider executor)
 {
     _type     = type;
     _path     = path;
     _executor = executor;
 }