Beispiel #1
0
        public override DataTable GetSchema(string collectionName, string[] restrictions)
        {
            CheckClosed();

            return(_innerConnection.GetSchema(collectionName, restrictions));
        }
Beispiel #2
0
        private Task <DataTable> GetSchemaImpl(string collectionName, string[] restrictions, AsyncWrappingCommonArgs async)
        {
            CheckClosed();

            return(_innerConnection.GetSchema(collectionName, restrictions, async));
        }