Click or drag to resize
IAppBuilderExtensions Class
IAppBuilder extension methods for configuring the HTTP logger with the Azure repository
Inheritance Hierarchy
SystemObject
  AccidentalFish.ApplicationSupport.Owin.AzureIAppBuilderExtensions

Namespace: AccidentalFish.ApplicationSupport.Owin.Azure
Assembly: AccidentalFish.ApplicationSupport.Owin.Azure (in AccidentalFish.ApplicationSupport.Owin.Azure.dll) Version: 0.9.0.0 (0.9.0.0)
Syntax
public static class IAppBuilderExtensions

The IAppBuilderExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberUseAzureHttpLogger
In order to capture the full set of data during a HTTP request this OWIN plugin must be the first plugin in the chain. Configure OWIN to trace HTTP requests and responses. Note that capturing request query parameters and request and response data could cause data security issues - potentially sensitive data will be logged to Azure table storage. Therefore by default none of this is captured. The HTTP traces are stored in these tables: httprequestbydatedescending httprequestbycorrelationid If this causes you any conflicts then the table names can be given an optional prefix using the azurePrefix parameter. Request and response data is stored in blob containers named httprequestdata and httpresponsedata respectively and the azurePrefix parameter is also applied to these container names. Blob names are linked to the log item ID held within the tables.
Top
See Also