Exemple #1
0
            internal Enumerator(IEnumerable <CimInstance> collection, CimConnection connection, IWqlQuery queryObject,
                                Type outType)
            {
                if (queryObject == null && outType == null)
                {
                    throw new ArgumentException(
                              $"Both {nameof(queryObject)} and {nameof(outType)} cannot be null at the same time.");
                }

                _connection           = connection;
                _collection           = collection.GetEnumerator();
                _queryObject          = queryObject;
                _connectionExpression = Expression.Constant(connection);
                _outType = outType;
            }
Exemple #2
0
 public ObjectReader(IEnumerable <CimInstance> collection, CimConnection connection, IWqlQuery queryObject,
                     Type outType = null)
 {
     _enumerator = new Enumerator(collection, connection, queryObject, outType);
 }