示例#1
0
 public RpcMultiPartClientFilter(IRpcDispatch next, ExtensionRegistry extensions, int threshold)
 {
     if (threshold < 2048)
     {
         throw new ArgumentOutOfRangeException();
     }
     this.next          = next;
     this.extensions    = extensions;
     multiPartThreshold = threshold;
 }
 public AuthorizeFilter(IRpcDispatch next)
 {
     _next = next;
 }