| WikiLoggingHelperBeginActionScope(IWikiClientLoggable, Object, IEnumerable, 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,
IEnumerable parameters,
string actionName = null
)
<ExtensionAttribute>
Public Shared Function BeginActionScope (
loggable As IWikiClientLoggable,
target As Object,
parameters As IEnumerable,
Optional actionName As String = Nothing
) As IDisposable
Dim loggable As IWikiClientLoggable
Dim target As Object
Dim parameters As IEnumerable
Dim actionName As String
Dim returnValue As IDisposable
returnValue = loggable.BeginActionScope(target,
parameters, actionName)
public:
[ExtensionAttribute]
static IDisposable^ BeginActionScope(
IWikiClientLoggable^ loggable,
Object^ target,
IEnumerable^ parameters,
String^ actionName = nullptr
)
[<ExtensionAttribute>]
static member BeginActionScope :
loggable : IWikiClientLoggable *
target : Object *
parameters : IEnumerable *
?actionName : string
(* Defaults:
let _actionName = defaultArg actionName null
*)
-> IDisposable
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.
- 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
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