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