internal static Command Create(string path, RequestType type, RestApiProvider executor) { if (String.IsNullOrEmpty(path)) { throw new ArgumentNullException("path"); } return(new Command(type, path, executor)); }
internal static Command Create(string path, RequestType type, RestApiProvider executor) { if (String.IsNullOrEmpty(path)) throw new ArgumentNullException("path"); return new Command(type, path, executor); }
private Command(RequestType type, string path, RestApiProvider executor) { _type = type; _path = path; _executor = executor; }