ListEndpoints() public method

Gets the list of endpoint
public ListEndpoints ( ) : IEnumerable
return IEnumerable
コード例 #1
0
 public void ListEndpointsTest()
 {
     var os = new OpenStackMember(UserName, Password, TenantName, TenantId);
     var endpoints = os.ListEndpoints();
     foreach (var ep in endpoints)
     {
         Trace.WriteLine(string.Format("{0} / {1} / {2} / {3}", ep.Name, ep.Region, ep.Type, ep.Url));
     }
 }