C# Класс CanvasControlLibrary.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.

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.

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.

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

Метод Описание
GenerateApiModel ( System.Web.Http.Description.ApiDescription apiDescription, HelpPageSampleGenerator sampleGenerator ) : HelpPageApiModel
LogInvalidSampleAsError ( HelpPageApiModel apiModel, object sample ) : void

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

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.
Результат CanvasControlLibrary.Areas.HelpPage.Models.HelpPageApiModel

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

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

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

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