/// <summary>
 /// Validate the object.
 /// </summary>
 /// <exception cref="ValidationException">
 /// Thrown if validation fails
 /// </exception>
 public virtual void Validate()
 {
     if (ComputeProperties != null)
     {
         ComputeProperties.Validate();
     }
     if (SsisProperties != null)
     {
         SsisProperties.Validate();
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Validate the object.
 /// </summary>
 /// <exception cref="ValidationException">
 /// Thrown if validation fails
 /// </exception>
 public virtual void Validate()
 {
     if (ComputeProperties != null)
     {
         ComputeProperties.Validate();
     }
     if (SsisProperties != null)
     {
         SsisProperties.Validate();
     }
     if (ManagedVirtualNetwork != null)
     {
         ManagedVirtualNetwork.Validate();
     }
 }