ConoHaNet.OpenStackMember.ListDatabases C# (CSharp) 메소드

ListDatabases() 공개 메소드

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
리턴 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