A diagram can be an instance of either a ServerDiagram or a LocalDiagram.
Members
Name |
Description |
The list of 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 is a derived class from the Diagram class.
Members
Name |
Description |
A string that uniquely identifies a server diagram. |
LocalDiagram is a derived class from the Diagram class.
Members
Name |
Description |
The diagram stream used to aggregate data. |
|
The base URL used to resolve relative paths when looking up resources. |