ExportProvider.TryGetExports 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 가져오기의 조건과 일치하는 내보내기를 모두 가져옵니다.
public:
bool TryGetExports(System::ComponentModel::Composition::Primitives::ImportDefinition ^ definition, System::ComponentModel::Composition::Hosting::AtomicComposition ^ atomicComposition, [Runtime::InteropServices::Out] System::Collections::Generic::IEnumerable<System::ComponentModel::Composition::Primitives::Export ^> ^ % exports);
public bool TryGetExports (System.ComponentModel.Composition.Primitives.ImportDefinition definition, System.ComponentModel.Composition.Hosting.AtomicComposition atomicComposition, out System.Collections.Generic.IEnumerable<System.ComponentModel.Composition.Primitives.Export> exports);
public bool TryGetExports (System.ComponentModel.Composition.Primitives.ImportDefinition definition, System.ComponentModel.Composition.Hosting.AtomicComposition? atomicComposition, out System.Collections.Generic.IEnumerable<System.ComponentModel.Composition.Primitives.Export>? exports);
member this.TryGetExports : System.ComponentModel.Composition.Primitives.ImportDefinition * System.ComponentModel.Composition.Hosting.AtomicComposition * seq -> bool
Public Function TryGetExports (definition As ImportDefinition, atomicComposition As AtomicComposition, ByRef exports As IEnumerable(Of Export)) As Boolean
매개 변수
- definition
- ImportDefinition
가져올 Export 개체의 조건을 정의하는 개체입니다.
- atomicComposition
- AtomicComposition
컴퍼지션의 트랜잭션 컨테이너입니다.
- exports
- IEnumerable<Export>
이 메서드가 반환될 경우 Export에 의해 정의된 조건과 일치하는 ImportDefinition 개체(있는 경우)의 컬렉션을 포함하며, 그렇지 않은 경우 비어 있는 IEnumerable<T> 개체입니다. 이 매개 변수는 초기화되지 않은 상태로 전달됩니다.
반환
Cardinality가 ZeroOrOne 또는 ZeroOrMore이고, 지정한 ImportDefinition의 조건과 일치하는 Export 개체가 없는 경우 true
입니다. Cardinality가 ZeroOrOne 또는 ExactlyOne이고 ImportDefinition의 조건과 일치하는 Export가 정확히 하나인 경우 true
이고 그렇지 않은 경우 false
입니다.
예외
definition
이(가) null
인 경우
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET