ServiceStack.WebHost.Endpoints.GenericHandler.GetRequest C# (CSharp) Method

GetRequest() public method

public GetRequest ( IHttpRequest httpReq, string operationName ) : object
httpReq IHttpRequest
operationName string
return object
        public object GetRequest(IHttpRequest httpReq, string operationName)
        {
            var operationType = GetOperationType(operationName);
            AssertOperationExists(operationName, operationType);

            return DeserializeContentType(operationType, httpReq, HandlerContentType);
        }