Beispiel #1
0
        public unsafe void endpointCallback(
            CoreEndpointContext *rawCtx,
            CoreHttpRequest *rawReq,
            CoreResource *call_with
            )
        {
            EndpointContext ctx = new EndpointContext(rawCtx);
            HttpRequest     req = new HttpRequest(rawReq);

            realEndpointCallback(ctx, req);
        }
Beispiel #2
0
 public unsafe HttpRequest(CoreHttpRequest *_inst)
 {
     inst = _inst;
 }
Beispiel #3
0
 public unsafe void MakeInvalid()
 {
     inst = null;
 }
Beispiel #4
0
 public static extern unsafe System.IntPtr ice_http_request_get_remote_addr_to_owned(
     CoreHttpRequest *req
     );
Beispiel #5
0
 public static extern unsafe void ice_http_request_get_remote_addr(
     CoreHttpRequest *req,
     GetStringInstantCallback cb,
     CoreResource *call_with
     );
Beispiel #6
0
 public static extern unsafe System.IntPtr ice_http_request_get_method_to_owned(
     CoreHttpRequest *req
     );