Asynchronously retrieve the connection string froma UDL file.

Namespace: ININ.IceLib.Configuration.Dialer
Assembly: ININ.IceLib.Dialer (in ININ.IceLib.Dialer.dll) Version: 0.0.0.0 (22.3.0.208)

Syntax

C#
public void GetUDLContentsAsync(
	string udlFile,
	EventHandler<AsyncCompletedEventArgs<string>> completedCallback,
	Object userState
)
Visual Basic
Public Sub GetUDLContentsAsync ( _
	udlFile As String, _
	completedCallback As EventHandler(Of AsyncCompletedEventArgs(Of String)), _
	userState As Object _
)

Parameters

udlFile
Type: System..::..String
The name of the UDL file.
completedCallback
Type: System..::..EventHandler<(Of <(<'AsyncCompletedEventArgs<(Of <(<'String>)>)>>)>)>
The event handler to call upon completion.
userState
Type: System..::..Object

See Also