<< Click to Display Table of Contents >> Navigation: »No topics above this level« Base.FullName Property |
Gets the FullName of this instance.
[Visual Basic]
Public MustOverride ReadOnly Property FullName() As String
Public Get
End Get
End Property
[C#]
public abstract string FullName { public get; }
The FullName is build automatically by using the parent object of a PviServices object. The LogicalObjects collection will be automatically filled up by instancing a new PviServices object. For adding a new object the FullName describes the key for accessing an object in the LogicalObjects. For creating link objects to existing PviServices objects it is necessary to specify those LinkName with this FullName.
// Create a new Service object
Service service = new Service(service_01);
// Create a new Cpu objekt
// FullName after creation: "service_01.Cpu_01"
Cpu cpu = new Cpu(service,"Cpu_01");
// Create a new Task object
// FullName after creation: "service_01.Cpu_01.loctask"
Task task_01 = new Task(cpu,"loctask");
// Create a new local Variable object
// FullName after creation: "service_01.Cpu_01.loctask.int_l_var"
Variable var_local_01 = new Variable(task_01,"int_l_var");
// So the FullName shows the hierarchic position within the PviServices-configuration.
Base Class | BR.AN.PviServices Namespace
Generated from assembly BR.AN.PviServices [8.1.0.4]