ICLRProbingAssemblyEnum Interface

Provides methods that enable the host to get the probing identities of an assembly by using the assembly's identity information that is internal to the common language runtime (CLR), without needing to create or understand that identity.

interface ICLRProbingAssemblyEnum : IUnknown {
    HRESULT Get (
        [in] DWORD dwIndex,
        [out, size_is(*pcchBufferSize)] LPWSTR pwzBuffer,
        [in, out] DWORD *pcchBufferSize
    );
};

Methods

Method

Description

ICLRProbingAssemblyEnum::Get Method

Gets the assembly identity at the specified index.

Remarks

Methods such as ICLRAssemblyIdentityManager::GetProbingAssembliesFromReference return an ICLRProbingAssemblyEnum instance.

Requirements

Platforms: See .NET Framework System Requirements.

Header: MSCorEE.idl

Library: Included as a resource in MSCorEE.dll

.NET Framework Versions: 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0

See Also

Reference

ICLRAssemblyIdentityManager Interface

ICLRAssemblyReferenceList Interface

Other Resources

Hosting Interfaces