public IObservable <MsvmNumaNode> AntecedentAsync(CIMLogicalElement inDependent, CimOperationOptions options = null)
        {
            var scope     = _scope;
            var instances = _resolver.ResolveSourceAsync(scope, inDependent.AsCimInstance(), options);

            return(instances.Select(i => (MsvmNumaNode)scope.Mapper.Create(scope, i)));
        }
Пример #2
0
        public IEnumerable <CIMResourcePool> Antecedent(CIMLogicalElement inDependent, CimOperationOptions options = null)
        {
            var scope     = _scope;
            var instances = _resolver.ResolveSource(scope, inDependent.AsCimInstance(), options);

            return(instances.Select(i => (CIMResourcePool)scope.Mapper.Create(scope, i)));
        }