'Declaration
<ExtensionAttribute()> Public Shared Sub ExportApplicationConfigurationToFile( _ ByVal application As IEasyUAClientServerApplication, _ ByVal filePath As String _ )
'Usage
Dim application As IEasyUAClientServerApplication Dim filePath As String IEasyUAClientServerApplicationExtension.ExportApplicationConfigurationToFile(application, filePath)
[Extension()] public static void ExportApplicationConfigurationToFile( IEasyUAClientServerApplication application, string filePath )
[Extension()] public: static void ExportApplicationConfigurationToFile( IEasyUAClientServerApplication^ application, String^ filePath )
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). - filePath
- The name of the file into which the data will be exported.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).