Click or drag to resize

WikiLoggingHelperBeginActionScope(ILogger, Object, IEnumerable, String) Method

This is preliminary documentation and is subject to change.

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

Namespace: WikiClientLibrary.Infrastructures.Logging
Assembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax
public static IDisposable BeginActionScope(
	this ILogger logger,
	Object? target,
	IEnumerable? parameters,
	string? actionName = null
)

Parameters

logger  ILogger
The logger that will enter a new scope.
target  Object
The action target. Usually the target WikiSite, WikiPage, etc. Can be null.
parameters  IEnumerable
The action parameters. Can be null.
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 ILogger. 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