LoggerCollection.Upload(ModuleListOptions) Method

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

LoggerCollection.Upload(ModuleListOptions) Method

BR.AN.PviServices .NET


Uploads Module objects depending on the collections parent (Cpu object).

[Visual Basic]

Public Overloads Sub Upload( _

  ByVal lstOption As ModuleListOptions _

)

[C#]

public void Upload(

  ModuleListOptions lstOption

);

Parameters

lstOption

0 .. default behavior, 1 ... ModuleList, 2 ... DiagModuleList, 3 ... all for ANSL else same as 0

Remarks

The Uploaded event notifies that all variables were successful uploaded.

Example

// Create a new Service object
Service service = new Service();
service.Connect();
// Create a new Cpu objekt
Cpu cpu = new Cpu(service,"Cpu");
// Set connection properties
cpu.Connection.DeviceType = BR.AN.PviServices.DeviceType.TcpIp;
cpu.Connection.TcpIp.SourceStation = 1;
cpu.Connection.TcpIp.DestinationStation = 50;
cpu.Connection.TcpIp.DestinationIpAddress = "10.43.70.250";
// Connect Cpu object
cpu.Connect();
cpu.Loggers.Upload();

See Also

LoggerCollection Class | BR.AN.PviServices Namespace | LoggerCollection.Upload Overload List


Generated from assembly BR.AN.PviServices [8.1.0.4]