public RestDeserialiseSecureHandler( string httpMethod, string path, RestDeserialiseMethod <TRequest, TResponse> method, CheckIdentityMethod smethod) : base(httpMethod, path) { m_smethod = smethod; m_method = method; }
public RestDeserialiseTrustedHandler(string httpMethod, string path, RestDeserialiseMethod <TRequest, TResponse> method, CheckTrustedSourceMethod tmethod) : base(httpMethod, path) { m_tmethod = tmethod; m_method = method; }
public RestDeserialiseHandler( string httpMethod, string path, RestDeserialiseMethod <TRequest, TResponse> method, string name, string description) : base(httpMethod, path, name, description) { m_method = method; }
public RestDeserialiseHandler(string httpMethod, string path, RestDeserialiseMethod <TRequest, TResponse> method) : this(httpMethod, path, method, null, null) { }
public RestDeserialiseHandler(string httpMethod, string path, RestDeserialiseMethod <TRequest, TResponse> method) : base(httpMethod, path) { m_method = method; }