Enumerator.TraceInfo Method (String, array<Object[])
Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
<ConditionalAttribute("DEBUG")> _
Public Shared Sub TraceInfo ( _
strFormat As String, _
ParamArray arg As Object() _
)
'Usage
Dim strFormat As String
Dim arg As Object()
Enumerator.TraceInfo(strFormat, arg)
[ConditionalAttribute("DEBUG")]
public static void TraceInfo(
string strFormat,
params Object[] arg
)
[ConditionalAttribute(L"DEBUG")]
public:
static void TraceInfo(
String^ strFormat,
... array<Object^>^ arg
)
[<ConditionalAttribute("DEBUG")>]
static member TraceInfo :
strFormat:string *
arg:Object[] -> unit
public static function TraceInfo(
strFormat : String,
... arg : Object[]
)
Parameters
- strFormat
Type: System.String
A String object that represents the information format.
- arg
Type: array<System.Object[]
An object that represents the trace information arguments.
See Also