/// <summary>
 /// Initializes a new instance of the ContentObject class
 /// Default Constructor - Initializes Lists
 /// </summary>
 public ContentObject()
 {
     this.contentKeyword = new VLList("contentKeyword");
     this.consumerRole   = new VLList("consumerRole");
     this.originatorRole = new VLList("originatorRole");
     this.other          = new List <XElement>();
 }
 /// <summary>
 /// Initializes a new instance of the ContentObject class
 /// Constructor To Initialize The Content Keyword Value List
 /// </summary>
 /// <param name="contentkeywordURN">Name of the ContentKeyword List</param>
 /// <param name="contentkeywordsin">List of Keywords</param>
 public ContentObject(string contentkeywordURN, List <string> contentkeywordsin)
 {
     this.contentKeyword = new VLList("contentKeyword");
     this.contentKeyword.Add(new ValueList(contentkeywordURN, contentkeywordsin));
     this.consumerRole   = new VLList("consumerRole");
     this.originatorRole = new VLList("originatorRole");
     this.other          = new List <XElement>();
 }
Esempio n. 3
0
 /// <summary>
 /// Initializes a new instance of the TEP class
 /// Default Constructor - Initializes Lists
 /// </summary>
 public TEP()
 {
     this.reportTime   = DateTime.MinValue;
     this.incidentType = new VLList("IncidentType");
 }
 /// <summary>
 /// Initializes a new instance of the TransportInfoType class
 /// Default Constructor - Initializes List
 /// </summary>
 public TransportInfoType()
 {
     this.vehicleType = new VLList("VehicleType");
 }
 /// <summary>
 /// Initializes a new instance of the ProviderInfoType class
 /// Default Constructor - Initializes ValueList
 /// </summary>
 public ProviderInfoType()
 {
     this.providerType = new VLList("ProviderType");
 }