Aurora.Services.WebAPI_StreamHandler.Handle C# (CSharp) Метод

Handle() публичный Метод

public Handle ( string path, Stream requestData, Aurora.Framework.Servers.HttpServer.OSHttpRequest httpRequest, Aurora.Framework.Servers.HttpServer.OSHttpResponse httpResponse ) : byte[]
path string
requestData Stream
httpRequest Aurora.Framework.Servers.HttpServer.OSHttpRequest
httpResponse Aurora.Framework.Servers.HttpServer.OSHttpResponse
Результат byte[]
        public override byte[] Handle(string path, Stream requestData, OSHttpRequest httpRequest, OSHttpResponse httpResponse)
        {
            return WebAPI.doAPICall(this, path, requestData, httpRequest, httpResponse);
        }
WebAPI_StreamHandler