System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeInterfaceAsObject C# (CSharp) Method

GetRuntimeInterfaceAsObject() public static method

public static GetRuntimeInterfaceAsObject ( System.Guid clsid, System.Guid riid ) : object
clsid System.Guid
riid System.Guid
return object
        public static object GetRuntimeInterfaceAsObject(Guid clsid, Guid riid)
        {
            throw new PlatformNotSupportedException();
        }
        public static string GetSystemVersion()

Usage Example

コード例 #1
0
        public static void RuntimeEnvironmentNegTest()
        {
            Type     clsType = typeof(RuntimeEnvironmentTest);
            Assembly assem   = clsType.Assembly;

            Assert.True(!RuntimeEnvironment.FromGlobalAccessCache(assem));

            Assert.Throws <PlatformNotSupportedException>(() => RuntimeEnvironment.SystemConfigurationFile);

            Guid guid;

            Assert.Throws <PlatformNotSupportedException>(() => RuntimeEnvironment.GetRuntimeInterfaceAsObject(guid, guid));
            Assert.Throws <PlatformNotSupportedException>(() => RuntimeEnvironment.GetRuntimeInterfaceAsIntPtr(guid, guid));
        }
All Usage Examples Of System.Runtime.InteropServices.RuntimeEnvironment::GetRuntimeInterfaceAsObject