Class Ecrion.DAS.Diagram

Top Previous Topic Next Topic  Print this topic

A diagram can be an instance of either a ServerDiagram or a LocalDiagram.

 

 

Members

 

Name

Description

Properties

The list of properties.

 

 

Properties

A list with all the properties of the current job.

 

 

public List<JobProperty> Properties

 

 

 

A property is a string triplet:

 

ObjectID - specifies the id of the XML element on which this property should be applied.

PropertyName - specifies the name of the property (XML attribute name).

PropertyValue - specifies the new value for the attribute that will be overwritten.

 

A property may be used to overwrite some attributes in your processing job file such as a connection string, Web service method name, etc.

 

 

public class JobProperty

{

  public JobProperty(String ObjectID, String PropertyName, String PropertyValue)

   {

      this.ObjectID = ObjectID;

      this.name = PropertyName;

      this.value = PropertyValue;

   }

 

  public String ObjectID;

  public String PropertyName;

  public String PropertyValue;

};

 

 

 

 

ServerDiagram

 

ServerDiagram is a derived class from the Diagram class.

 

Members

 

Name

Description

DiagramID

A string that uniquely identifies a server diagram.

 

 

 

LocalDiagram

 

LocalDiagram is a derived class from the Diagram class.

 

Members

 

Name

Description

DiagramContent

The diagram stream used to aggregate data.

BaseUrl

The base URL used to resolve relative paths when looking up resources.