Markers.EnterSpan Method (String, Object[])

 

Marks the beginning of a new span.

Namespace:   Microsoft.ConcurrencyVisualizer.Instrumentation
Assembly:  Microsoft.ConcurrencyVisualizer.Markers (in Microsoft.ConcurrencyVisualizer.Markers.dll)

Syntax

public static Span EnterSpan(
    string format,
    params object[] args
)
public:
static Span^ EnterSpan(
    String^ format,
    ... array<Object^>^ args
)
static member EnterSpan : 
        format:string *
        [<ParamArrayAttribute>] args:Object[] -> Span
Public Shared Function EnterSpan (
    format As String,
    ParamArray args As Object()
) As Span

Parameters

  • format
    Type: System.String

    A composite format string that contains text intermixed with zero or more format items, which correspond to objects in the args array

  • args
    Type: System.Object[]

    An object array containing zero or more objects to format.

Return Value

Type: Microsoft.ConcurrencyVisualizer.Instrumentation.Span

Returns Span.

See Also

EnterSpan Overload
Markers Class
Microsoft.ConcurrencyVisualizer.Instrumentation Namespace

Return to top