AW.Webapi.Sample.Areas.HelpPage.HelpPageConfigurationExtensions.SetSampleResponse C# (CSharp) Method

SetSampleResponse() public static method

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.
return void
        public static void SetSampleResponse(this HttpConfiguration config, object sample, MediaTypeHeaderValue mediaType, string controllerName, string actionName)
        {
            config.GetHelpPageSampleGenerator().ActionSamples.Add(new HelpPageSampleKey(mediaType, SampleDirection.Response, controllerName, actionName, new[] { "*" }), sample);
        }