ConoHaNet.OpenStackMember.ListDatabases C# (CSharp) Method

ListDatabases() public method

public ListDatabases ( 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<Database> ListDatabases(string serviceId, int? offset = null, int? limit = null, string sortKey = null, string sortType = null)
        {
            return DatabaseProvider.ListDatabases(serviceId, offset, limit, sortKey, sortType, this.DefaultRegion, this.Identity);
        }
OpenStackMember