Click or drag to resize

WikiLoggingHelperBeginActionScope(IWikiClientLoggable, Object, Object, Object, Object, String) Method

This is preliminary documentation and is subject to change.

Invokes BeginScopeTState(TState) on the Logger with the current action(method) name and parameters.

Namespace: WikiClientLibrary.Infrastructures.Logging
Assembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.3+0a73c45f0c78941900e328c6c6b819597b665e00
Syntax
public static IDisposable BeginActionScope(
	this IWikiClientLoggable loggable,
	Object? target,
	Object param1,
	Object param2,
	Object param3,
	string? actionName = null
)

Parameters

loggable  IWikiClientLoggable
The instance whose Logger will enter a new scope.
target  Object
The action target. Usually the target WikiSite, WikiPage, etc. Can be null.
param1  Object
The first parameter for the action.
param2  Object
The second parameter for the action.
param3  Object
The third parameter for the action.
actionName  String  (Optional)
The action name. Leave it missing to use the caller's member name.

Return Value

IDisposable
An IDisposable that when disposed, indicates the action is over.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IWikiClientLoggable. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also