C# Класс ArmRest.Areas.HelpPage.HelpPageConfigurationExtensions

Показать файл Открыть проект

Открытые методы

Метод Описание
GetHelpPageApiModel ( this config, string apiDescriptionId ) : HelpPageApiModel

Gets the model that represents an API displayed on the help page. The model is initialized on the first call and cached for subsequent calls.

GetHelpPageSampleGenerator ( this config ) : HelpPageSampleGenerator

Gets the help page sample generator.

GetModelDescriptionGenerator ( this config ) : ModelDescriptionGenerator

Gets the model description generator.

SetActualRequestType ( this config, Type type, string controllerName, string actionName ) : void

Specifies the actual type of System.Net.Http.ObjectContent{T} passed to the System.Net.Http.HttpRequestMessage in an action. The help page will use this information to produce more accurate request samples.

SetActualResponseType ( this config, Type type, string controllerName, string actionName ) : void

Specifies the actual type of System.Net.Http.ObjectContent{T} returned as part of the System.Net.Http.HttpRequestMessage in an action. The help page will use this information to produce more accurate response samples.

SetDocumentationProvider ( this config, IDocumentationProvider documentationProvider ) : void

Sets the documentation provider for help page.

SetHelpPageSampleGenerator ( this config, HelpPageSampleGenerator sampleGenerator ) : void

Sets the help page sample generator.

SetSampleForMediaType ( this config, object sample, MediaTypeHeaderValue mediaType ) : void

Sets the sample directly for all actions with the specified media type.

SetSampleForType ( this config, object sample, MediaTypeHeaderValue mediaType, Type type ) : void

Sets the sample directly for all actions with the specified type and media type.

SetSampleObjects ( this config, object>.IDictionary sampleObjects ) : void

Sets the objects that will be used by the formatters to produce sample requests/responses.

SetSampleRequest ( this config, object sample, MediaTypeHeaderValue mediaType, string controllerName, string actionName ) : void

Sets the sample request directly for the specified media type and action.

SetSampleResponse ( this config, object sample, MediaTypeHeaderValue mediaType, string controllerName, string actionName ) : void

Sets the sample request directly for the specified media type of the action.

Приватные методы

Метод Описание
AddParameterDescription ( HelpPageApiModel apiModel, System.Web.Http.Description.ApiParameterDescription apiParameter, ModelDescription typeDescription ) : ParameterDescription
GenerateApiModel ( System.Web.Http.Description.ApiDescription apiDescription, System.Web.Http.HttpConfiguration config ) : HelpPageApiModel
GenerateRequestModelDescription ( HelpPageApiModel apiModel, ModelDescriptionGenerator modelGenerator, HelpPageSampleGenerator sampleGenerator ) : void
GenerateResourceDescription ( HelpPageApiModel apiModel, ModelDescriptionGenerator modelGenerator ) : void
GenerateSamples ( HelpPageApiModel apiModel, HelpPageSampleGenerator sampleGenerator ) : void
GenerateUriParameters ( HelpPageApiModel apiModel, ModelDescriptionGenerator modelGenerator ) : void
InitializeModelDescriptionGenerator ( System.Web.Http.HttpConfiguration config ) : ModelDescriptionGenerator
IsBindableWithTypeConverter ( Type parameterType ) : bool
LogInvalidSampleAsError ( HelpPageApiModel apiModel, object sample ) : void
TryGetResourceParameter ( System.Web.Http.Description.ApiDescription apiDescription, System.Web.Http.HttpConfiguration config, System.Web.Http.Description.ApiParameterDescription &parameterDescription, Type &resourceType ) : bool

Описание методов

GetHelpPageApiModel() публичный статический метод

Gets the model that represents an API displayed on the help page. The model is initialized on the first call and cached for subsequent calls.
public static GetHelpPageApiModel ( this config, string apiDescriptionId ) : HelpPageApiModel
config this The .
apiDescriptionId string The ID.
Результат ArmRest.Areas.HelpPage.Models.HelpPageApiModel

GetHelpPageSampleGenerator() публичный статический метод

Gets the help page sample generator.
public static GetHelpPageSampleGenerator ( this config ) : HelpPageSampleGenerator
config this The .
Результат HelpPageSampleGenerator

GetModelDescriptionGenerator() публичный статический метод

Gets the model description generator.
public static GetModelDescriptionGenerator ( this config ) : ModelDescriptionGenerator
config this The configuration.
Результат ArmRest.Areas.HelpPage.ModelDescriptions.ModelDescriptionGenerator

SetActualRequestType() публичный статический метод

Specifies the actual type of System.Net.Http.ObjectContent{T} passed to the System.Net.Http.HttpRequestMessage in an action. The help page will use this information to produce more accurate request samples.
public static SetActualRequestType ( this config, Type type, string controllerName, string actionName ) : void
config this The .
type System.Type The type.
controllerName string Name of the controller.
actionName string Name of the action.
Результат void

SetActualResponseType() публичный статический метод

Specifies the actual type of System.Net.Http.ObjectContent{T} returned as part of the System.Net.Http.HttpRequestMessage in an action. The help page will use this information to produce more accurate response samples.
public static SetActualResponseType ( this config, Type type, string controllerName, string actionName ) : void
config this The .
type System.Type The type.
controllerName string Name of the controller.
actionName string Name of the action.
Результат void

SetDocumentationProvider() публичный статический метод

Sets the documentation provider for help page.
public static SetDocumentationProvider ( this config, IDocumentationProvider documentationProvider ) : void
config this The .
documentationProvider IDocumentationProvider The documentation provider.
Результат void

SetHelpPageSampleGenerator() публичный статический метод

Sets the help page sample generator.
public static SetHelpPageSampleGenerator ( this config, HelpPageSampleGenerator sampleGenerator ) : void
config this The .
sampleGenerator HelpPageSampleGenerator The help page sample generator.
Результат void

SetSampleForMediaType() публичный статический метод

Sets the sample directly for all actions with the specified media type.
public static SetSampleForMediaType ( this config, object sample, MediaTypeHeaderValue mediaType ) : void
config this The .
sample object The sample.
mediaType System.Net.Http.Headers.MediaTypeHeaderValue The media type.
Результат void

SetSampleForType() публичный статический метод

Sets the sample directly for all actions with the specified type and media type.
public static SetSampleForType ( this config, object sample, MediaTypeHeaderValue mediaType, Type type ) : void
config this The .
sample object The sample.
mediaType System.Net.Http.Headers.MediaTypeHeaderValue The media type.
type System.Type The parameter type or return type of an action.
Результат void

SetSampleObjects() публичный статический метод

Sets the objects that will be used by the formatters to produce sample requests/responses.
public static SetSampleObjects ( this config, object>.IDictionary sampleObjects ) : void
config this The .
sampleObjects object>.IDictionary The sample objects.
Результат void

SetSampleRequest() публичный статический метод

Sets the sample request directly for the specified media type and action.
public static SetSampleRequest ( this config, object sample, MediaTypeHeaderValue mediaType, string controllerName, string actionName ) : void
config this The .
sample object The sample request.
mediaType System.Net.Http.Headers.MediaTypeHeaderValue The media type.
controllerName string Name of the controller.
actionName string Name of the action.
Результат void

SetSampleResponse() публичный статический метод

Sets the sample request directly for the specified media type of the action.
public static SetSampleResponse ( this config, object sample, MediaTypeHeaderValue mediaType, string controllerName, string actionName ) : void
config this The .
sample object The sample response.
mediaType System.Net.Http.Headers.MediaTypeHeaderValue The media type.
controllerName string Name of the controller.
actionName string Name of the action.
Результат void