Traces the contents of a dictionary
Namespace: Microsoft.Activities.Extensions.Tracking
Assembly: Microsoft.Activities.Extensions (in Microsoft.Activities.Extensions.dll) Version: 2.0.6.9 (2.0.6.9)
Syntax
Visual Basic |
---|
Public Shared Sub TraceDictionary(Of TKey, TValue) ( _
stringBuilder As StringBuilder, _
dictionary As IDictionary(Of TKey, TValue), _
name As String, _
Optional indent As Boolean = True _
) |
Visual C++ |
---|
public:
generic<typename TKey, typename TValue>
static void TraceDictionary(
StringBuilder^ stringBuilder,
IDictionary<TKey, TValue>^ dictionary,
String^ name,
bool indent = true
) |
Type Parameters
- TKey
-
The type of the key
- TValue
-
The type of the value
See Also