Exemplo n.º 1
0
 public XmlParameter(string name, Guid guid, XmlParameterValueType valueType, string description = "")
 {
     Name                 = name;
     Guid                 = guid;
     ValueType            = valueType;
     ParameterDescription = description;
 }
Exemplo n.º 2
0
 public XmlParameter(string name, string guid, XmlParameterValueType valueType, string description = "")
     : this(name, new Guid(guid), valueType, description)
 {
 }