File: system\runtime\interopservices\windowsruntime\iactivationfactory.cs | |
Project: ndp\clr\src\bcl\mscorlib.csproj (mscorlib) |
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // // <OWNER>LadiPro</OWNER> // <OWNER>RByers</OWNER> // <OWNER>ShawnFa</OWNER> using System; using System.Runtime.InteropServices; namespace System.Runtime.InteropServices.WindowsRuntime { [ComImport] [Guid("00000035-0000-0000-C000-000000000046")] [WindowsRuntimeImport] public interface IActivationFactory { object ActivateInstance(); } } |