public Dictionary <string, VimObjectRefType> GetNetworkVimRefsByMoref() { try { return(VMWVimServer.GetNetworkVimRefsByMoref(this.VcloudClient, this.Reference.href + "/networks")); } catch (Exception ex) { throw new VCloudException(ex.Message); } }
public static Dictionary <string, VimObjectRefType> GetNetworkVimRefsByMoref( vCloudClient client, ReferenceType vimServerRef) { try { string url = vimServerRef.href + "/networks"; return(VMWVimServer.GetNetworkVimRefsByMoref(client, url)); } catch (Exception ex) { throw new VCloudException(ex.Message); } }