'Declaration
Public Function BeginObtainNewCertificate( _ ByVal arguments As UAObtainCertificateArguments, _ ByVal asyncCallback As AsyncCallback, _ ByVal state As Object, _ ByVal progress As IProgress(Of String()) _ ) As IAsyncResult
'Usage
Dim instance As AbstractEasyUAClientServerApplication Dim arguments As UAObtainCertificateArguments Dim asyncCallback As AsyncCallback Dim state As Object Dim progress As IProgress(Of String()) Dim value As IAsyncResult value = instance.BeginObtainNewCertificate(arguments, asyncCallback, state, progress)
public IAsyncResult BeginObtainNewCertificate( UAObtainCertificateArguments arguments, AsyncCallback asyncCallback, object state, IProgress<string[]> progress )
public: IAsyncResult^ BeginObtainNewCertificate( UAObtainCertificateArguments^ arguments, AsyncCallback^ asyncCallback, Object^ state, IProgress<array<String^>>^ progress )
Parameters
- arguments
- Contains arguments for obtaining a new application certificate from the OPC UA Global Discovery Server (GDS).
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - asyncCallback
- The delegate that is executed when the operation completes.
The value of this parameter can be
null
(Nothing
in Visual Basic). - state
- An object that contains any additional user-defined data.
The value of this parameter can be
null
(Nothing
in Visual Basic). - progress
- A provider for progress updates.
The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
This method never returns null
(Nothing
in Visual Basic).