Apistry.WebApiDocumentationProvider.CreateDefaultResponseDocumentation C# (CSharp) Method

CreateDefaultResponseDocumentation() private method

private CreateDefaultResponseDocumentation ( HttpActionDescriptor actionDescriptor ) : HttpActionResponseDocumentation
actionDescriptor HttpActionDescriptor
return Apistry.ApiController.HttpActionResponseDocumentation
        private HttpActionResponseDocumentation CreateDefaultResponseDocumentation(HttpActionDescriptor actionDescriptor)
        {
            // This will eventually be used to reflect the action descriptor and determine
            // if a response can be generated based upon the return type of the method.

            return new HttpActionResponseDocumentation(
                String.Empty,
                HttpStatusCode.OK,
                Enumerable.Empty<PropertyDocumentation>(),
                null);
        }
    }