ConoHaNet.OpenStackMember.ListMailServices C# (CSharp) Method

ListMailServices() public method

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