'Declaration
<ExtensionAttribute()> <NotNullAttribute()> Public Overloads Shared Function BeginObtainNewCertificate( _ ByVal application As IEasyUAClientServerApplication, _ ByVal parameters As UACertificateRequestParameters, _ ByVal asyncCallback As AsyncCallback, _ ByVal state As Object _ ) As IAsyncResult
'Usage
Dim application As IEasyUAClientServerApplication Dim parameters As UACertificateRequestParameters Dim asyncCallback As AsyncCallback Dim state As Object Dim value As IAsyncResult value = IEasyUAClientServerApplicationExtension.BeginObtainNewCertificate(application, parameters, asyncCallback, state)
[Extension()] [NotNull()] public static IAsyncResult BeginObtainNewCertificate( IEasyUAClientServerApplication application, UACertificateRequestParameters parameters, AsyncCallback asyncCallback, object state )
[Extension()] [NotNull()] public: static IAsyncResult^ BeginObtainNewCertificate( IEasyUAClientServerApplication^ application, UACertificateRequestParameters^ parameters, AsyncCallback^ asyncCallback, Object^ state )
Parameters
- application
- The OPC UA client/server application object that will perform the operation.
In client applications, this is typically obtained by calling System.IServiceProvider.GetService(System.Type) on the OpcLabs.EasyOpc.UA.IEasyUAClient (
EasyUAClient
object) with the type of OpcLabs.EasyOpc.UA.Application.IEasyUAClientServerApplication as an argument.The value of this parameter cannot be
null
(Nothing
in Visual Basic). - parameters
- The parameters describing how the certificate should be obtained.
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).
Return Value
This method never returns null
(Nothing
in Visual Basic).