Inheritance: 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
ファイル: Command.cs プロジェクト: acropolium/Rest4Net
 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
ファイル: Command.cs プロジェクト: acropolium/Rest4Net
 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;
 }