/1[], String, String, Object[])
Provides a set of methods and properties that help debug your code with the specified writer, request, category, exception, message format and argument.
Namespace: System.Web.Http.Tracing
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Sub Debug ( _
traceWriter As ITraceWriter, _
request As HttpRequestMessage, _
category As String, _
messageFormat As String, _
ParamArray messageArguments As Object() _
)
'Usage
Dim traceWriter As ITraceWriter
Dim request As HttpRequestMessage
Dim category As String
Dim messageFormat As String
Dim messageArguments As Object()
traceWriter.Debug(request, category, _
messageFormat, messageArguments)
public static void Debug(
this ITraceWriter traceWriter,
HttpRequestMessage request,
string category,
string messageFormat,
params Object[] messageArguments
)
[ExtensionAttribute]
public:
static void Debug(
ITraceWriter^ traceWriter,
HttpRequestMessage^ request,
String^ category,
String^ messageFormat,
... array<Object^>^ messageArguments
)
static member Debug :
traceWriter:ITraceWriter *
request:HttpRequestMessage *
category:string *
messageFormat:string *
messageArguments:Object[] -> unit
public static function Debug(
traceWriter : ITraceWriter,
request : HttpRequestMessage,
category : String,
messageFormat : String,
... messageArguments : Object[]
)
Parameters
traceWriter
Type: System.Web.Http.Tracing.ITraceWriterThe ITraceWriter.
request
Type: HttpRequestMessageThe HttpRequestMessage with which to associate the trace. It may be null.
category
Type: System.StringThe logical category of the trace.
messageFormat
Type: System.StringThe format of the message.
messageArguments
Type: System.Object[]The message argument.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type ITraceWriter. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).