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; }
public RestDeserializeHandler( string httpMethod, string path, RestDeserializeMethod <TRequest, TResponse> method, string name, string description) : base(httpMethod, path, name, description) { m_method = method; }
public RestDeserializeHandler(string httpMethod, string path, RestDeserializeMethod <TRequest, TResponse> method) : this(httpMethod, path, method, null, null) { }