public NameValueObject(string name)
 {
     this.ObjectName = name;
     this.Properties = new NameValueList();
 }
 public NameValueObject()
 {
     this.ObjectName = "";
     this.Properties = new NameValueList();
 }