/// <summary>
 /// Initializes a new instance of the ConnectionCreateProperties class
 /// with required arguments.
 /// </summary>
 public ConnectionCreateProperties(ConnectionTypeAssociationProperty connectionType)
     : this()
 {
     if (connectionType == null)
     {
         throw new ArgumentNullException("connectionType");
     }
     this.ConnectionType = connectionType;
 }
 /// <summary>
 /// Initializes a new instance of the ConnectionCreateProperties class
 /// with required arguments.
 /// </summary>
 public ConnectionCreateProperties(ConnectionTypeAssociationProperty connectionType)
     : this()
 {
     if (connectionType == null)
     {
         throw new ArgumentNullException("connectionType");
     }
     this.ConnectionType = connectionType;
 }