ConoHaNet.OpenStackMember.ListEmailForwardings C# (CSharp) Method

ListEmailForwardings() public method

public ListEmailForwardings ( 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<EmailForwarding> ListEmailForwardings(string emailId, int? offset = null, int? limit = null, string sortKey = null, string sortType = null)
        {
            return MailServiceProvider.ListEmailForwardings(emailId, offset, limit, sortKey, sortType, this.DefaultRegion, this.Identity);
        }
OpenStackMember