ConoHaNet.OpenStackMember.ListMailDomains C# (CSharp) Method

ListMailDomains() public method

public ListMailDomains ( string serviceId, int offset = null, int limit = null, string sortKey = null, string sortType = null ) : IEnumerable
serviceId string
offset int
limit int
sortKey string
sortType string
return IEnumerable
        public IEnumerable<MailDomain> ListMailDomains(string serviceId, int? offset = null, int? limit = null, string sortKey = null, string sortType = null)
        {
            return MailServiceProvider.ListMailDomains(serviceId, offset, limit, sortKey, sortType, this.DefaultRegion, this.Identity);
        }
OpenStackMember