ConoHaNet.OpenStackMember.GetEmailWhiteList C# (CSharp) Method

GetEmailWhiteList() public method

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