public static ComEventsInfo?Find(object rcw)
 {
     return((ComEventsInfo?)Marshal.GetComObjectData(rcw, typeof(ComEventsInfo)));
 }
Пример #2
0
 internal static ComEventsInfo Find(object rcw)
 {
     return((ComEventsInfo)Marshal.GetComObjectData(rcw, typeof(ComEventsInfo)));
 }
Пример #3
0
 public static void GetComObjectData()
 {
     Assert.Throws <PlatformNotSupportedException>(() => Marshal.GetComObjectData(null, null));
 }