public RestDeserializeSecureHandler(
     string httpMethod, string path,
     RestDeserializeMethod <TRequest, TResponse> method, CheckIdentityMethod smethod)
     : base(httpMethod, path)
 {
     m_smethod = smethod;
     m_method  = method;
 }
 public RestDeserializeTrustedHandler(string httpMethod, string path, RestDeserializeMethod <TRequest, TResponse> method, CheckTrustedSourceMethod tmethod)
     : base(httpMethod, path)
 {
     m_tmethod = tmethod;
     m_method  = method;
 }
Beispiel #3
0
 public RestDeserializeHandler(
     string httpMethod, string path, RestDeserializeMethod <TRequest, TResponse> method, string name, string description)
     : base(httpMethod, path, name, description)
 {
     m_method = method;
 }
Beispiel #4
0
 public RestDeserializeHandler(string httpMethod, string path, RestDeserializeMethod <TRequest, TResponse> method)
     : this(httpMethod, path, method, null, null)
 {
 }