| WikiLoggingHelperBeginActionScope(IWikiClientLoggable, Object, String) Method |
This is preliminary documentation and is subject to change.
Namespace: WikiClientLibrary.Infrastructures.LoggingAssembly: WikiClientLibrary (in WikiClientLibrary.dll) Version: 0.9.0-int.2+447d1d590e6726b7881f750a0a0e42908f3e417e
Syntax public static IDisposable BeginActionScope(
this IWikiClientLoggable loggable,
Object? target,
string? actionName = null
)
<ExtensionAttribute>
Public Shared Function BeginActionScope (
loggable As IWikiClientLoggable,
target As Object,
Optional actionName As String = Nothing
) As IDisposable
Dim loggable As IWikiClientLoggable
Dim target As Object
Dim actionName As String
Dim returnValue As IDisposable
returnValue = loggable.BeginActionScope(target,
actionName)
public:
[ExtensionAttribute]
static IDisposable^ BeginActionScope(
IWikiClientLoggable^ loggable,
Object^ target,
String^ actionName = nullptr
)
[<ExtensionAttribute>]
static member BeginActionScope :
loggable : IWikiClientLoggable *
target : Object *
?actionName : string
(* Defaults:
let _actionName = defaultArg actionName null
*)
-> IDisposable
Parameters
- loggable IWikiClientLoggable
- The loggable object whose logger will enter a new scope.
- target Object
- The action target. Usually the target WikiSite, WikiPage, etc.
Can be null.
- actionName String (Optional)
- The action name. Leave it missing to use the caller's member name.
Return Value
IDisposableAn
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