DiagnosticsCreateHttpFilter Method |
Creates a new instance of IHttpFilter that callers can use with an HttpClient object to add diagnostics capabilities to service calls.
The filter can be chained with other IHttpFilter objects. If no other filter is provided then HttpBaseProtocolFilter will be used.
Namespace: Oracle.Cloud.Mobile.DiagnosticsAssembly: Oracle.Cloud.Mobile (in Oracle.Cloud.Mobile.dll) Version: 16.1.3.1 (16.1.3.1)
Syntaxpublic IHttpFilter CreateHttpFilter(
IHttpFilter nextFilter
)
Public Function CreateHttpFilter (
nextFilter As IHttpFilter
) As IHttpFilter
public:
IHttpFilter^ CreateHttpFilter(
IHttpFilter^ nextFilter
)
member CreateHttpFilter :
nextFilter : IHttpFilter -> IHttpFilter
Parameters
- nextFilter
- Type: Windows.Web.Http.FiltersIHttpFilter
The next filter in the chain. Optional can be null.
Return Value
Type:
IHttpFilter
See Also