// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the License.txt file in the project root for more information.
using System;
using System.Runtime.InteropServices;
namespace Microsoft.DiaSymReader
{
[Guid("EDF3A293-A10D-4F4A-A609-38D5EDE35F89")]
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[ComVisible(false)]
[GeneratedWhenPossibleComInterface]
public partial interface IMetadataImportProvider
{
/// <summary>
/// Gets an instance of IMetadataImport.
/// </summary>
/// <remarks>
/// The implementer is responsible for managing the lifetime of the resulting object.
/// </remarks>
[return: MarshalAs(UnmanagedType.Interface)]
object GetMetadataImport();
}
}
|