Exemplo n.º 1
0
 public WebAPI_StreamHandler(WebAPIHandler webapi, WebAPIHttpMethod method)
     : base(method.ToString(), httpPath)
 {
     WebAPI = webapi;
 }
Exemplo n.º 2
0
 public WebAPIMethod(WebAPIHttpMethod HttpMethod, bool passOnRequestingAgentID, WebAPIThreatLevel threat)
 {
     m_httpMethod = HttpMethod;
     m_passOnRequestingAgentID = passOnRequestingAgentID;
     m_threatLevel = threat;
 }
Exemplo n.º 3
0
 public WebAPIMethod(WebAPIHttpMethod HttpMethod, bool passOnRequestingAgentID)
 {
     m_httpMethod = HttpMethod;
     m_passOnRequestingAgentID = passOnRequestingAgentID;
 }
Exemplo n.º 4
0
        /*
        public WebAPIMethod(WebAPIHttpMethod HttpMethod)
        {
            m_httpMethod = HttpMethod;
        }

        public WebAPIMethod(WebAPIHttpMethod HttpMethod, bool passOnRequestingAgentID)
        {
            m_httpMethod = HttpMethod;
            m_passOnRequestingAgentID = passOnRequestingAgentID;
        }
        */
        public WebAPIMethod(WebAPIHttpMethod HttpMethod, WebAPIThreatLevel threat)
        {
            m_httpMethod = HttpMethod;
            m_threatLevel = threat;
        }
Exemplo n.º 5
0
 public WebAPIMethod(WebAPIHttpMethod HttpMethod)
 {
     m_httpMethod = HttpMethod;
     m_passOnRequestingAgentID = false;
 }