Opc.Ua.Core
BeginScope Method (Utils)



Opc.Ua Namespace > Utils Class : BeginScope Method
Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
An object array that contains zero or more objects to format.
Formats the message and creates a scope.
Syntax
'Declaration
 
Public Shared Function BeginScope( _
   ByVal messageFormat As String, _
   ByVal ParamArray args() As Object _
) As IDisposable
'Usage
 
Dim messageFormat As String
Dim args() As Object
Dim value As IDisposable
 
value = Utils.BeginScope(messageFormat, args)
public static IDisposable BeginScope( 
   string messageFormat,
   params object[] args
)
public:
static IDisposable^ BeginScope( 
   String^ messageFormat,
   ... array<Object^>^ args
) 

Parameters

messageFormat
Format string of the log message in message template format. Example: "User {User} logged in from {Address}"
args
An object array that contains zero or more objects to format.

Return Value

A disposable scope object. Can be null.
Example
using(BeginScope("Processing request from {Address}", address)) { }
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Utils Class
Utils Members