Example #1
0
 public EnvelopeType GetOvf()
 {
     try
     {
         return(Vapp.GetOvf(this.VcloudClient, this.Reference.href + "/ovf"));
     }
     catch (Exception ex)
     {
         throw new VCloudException(ex.Message);
     }
 }
Example #2
0
 public static EnvelopeType GetOvf(vCloudClient client, ReferenceType vappRef)
 {
     try
     {
         return(Vapp.GetOvf(client, vappRef.href + "/ovf"));
     }
     catch (Exception ex)
     {
         throw new VCloudException(ex.Message);
     }
 }