using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
using System.Security;
using System.Windows.Forms;
using System.Runtime.CompilerServices;
namespace ExtendedWebBrowser2
{
class UnsafeNativeMethods
{
private UnsafeNativeMethods()
{
}
[ComImport, TypeLibType((short)0x1010), InterfaceType((short)2), Guid("34A715A0-6587-11D0-924A-0020AFC7AC4D")]
public interface DWebBrowserEvents2
{
[PreserveSig, MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime), DispId(0x66)]
void StatusTextChange([In, MarshalAs(UnmanagedType.BStr)] string Text);
[PreserveSig, MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime), DispId(0x6c)]
void ProgressChange([In] int Progress, [In] int ProgressMax);
}
[ComImport, SuppressUnmanagedCodeSecurity, TypeLibType(TypeLibTypeFlags.FOleAutomation | (TypeLibTypeFlags.FDual | TypeLibTypeFlags.FHidden)), Guid("D30C1661-CDAF-11d0-8A3E-00C04FC9E26E")]
public interface IWebBrowser2
{
[DispId(100)]
void GoBack();
[DispId(0x65)]
void GoForward();
[DispId(0x66)]
void GoHome();
[DispId(0x67)]
void GoSearch();
[DispId(0x68)]
void Navigate([In] string Url, [In] ref object flags, [In] ref object targetFrameName, [In] ref object postData, [In] ref object headers);
[DispId(-550)]
void Refresh();
[DispId(0x69)]
void Refresh2([In] ref object level);
[DispId(0x6a)]
void Stop();
[DispId(200)]
object Application { [return: MarshalAs(UnmanagedType.IDispatch)] get; }
[DispId(0xc9)]
object Parent { [return: MarshalAs(UnmanagedType.IDispatch)] get; }
[DispId(0xca)]
object Container { [return: MarshalAs(UnmanagedType.IDispatch)] get; }
[DispId(0xcb)]
object Document { [return: MarshalAs(UnmanagedType.IDispatch)] get; }
[DispId(0xcc)]
bool TopLevelContainer { get; }
[DispId(0xcd)]
string Type { get; }
[DispId(0xce)]
int Left { get; set; }
[DispId(0xcf)]
int Top { get; set; }
[DispId(0xd0)]
int Width { get; set; }
[DispId(0xd1)]
int Height { get; set; }
[DispId(210)]
string LocationName { get; }
[DispId(0xd3)]
string LocationURL { get; }
[DispId(0xd4)]
bool Busy { get; }
[DispId(300)]
void Quit();
[DispId(0x12d)]
void ClientToWindow(out int pcx, out int pcy);
[DispId(0x12e)]
void PutProperty([In] string property, [In] object vtValue);
[DispId(0x12f)]
object GetProperty([In] string property);
[DispId(0)]
string Name { get; }
[DispId(-515)]
int HWND { get; }
[DispId(400)]
string FullName { get; }
[DispId(0x191)]
string Path { get; }
[DispId(0x192)]
bool Visible { get; set; }
[DispId(0x193)]
bool StatusBar { get; set; }
[DispId(0x194)]
string StatusText { get; set; }
[DispId(0x195)]
int ToolBar { get; set; }
[DispId(0x196)]
bool MenuBar { get; set; }
[DispId(0x197)]
bool FullScreen { get; set; }
[DispId(500)]
void Navigate2([In] ref object URL, [In] ref object flags, [In] ref object targetFrameName, [In] ref object postData, [In] ref object headers);
[DispId(0x1f5)]
NativeMethods.OLECMDF QueryStatusWB([In] NativeMethods.OLECMDID cmdID);
[DispId(0x1f6)]
void ExecWB([In] NativeMethods.OLECMDID cmdID, [In] NativeMethods.OLECMDEXECOPT cmdexecopt, ref object pvaIn, IntPtr pvaOut);
[DispId(0x1f7)]
void ShowBrowserBar([In] ref object pvaClsid, [In] ref object pvarShow, [In] ref object pvarSize);
[DispId(-525)]
WebBrowserReadyState ReadyState { get; }
[DispId(550)]
bool Offline { get; set; }
[DispId(0x227)]
bool Silent { get; set; }
[DispId(0x228)]
bool RegisterAsBrowser { get; set; }
[DispId(0x229)]
bool RegisterAsDropTarget { get; set; }
[DispId(0x22a)]
bool TheaterMode { get; set; }
[DispId(0x22b)]
bool AddressBar { get; set; }
[DispId(0x22c)]
bool Resizable { get; set; }
}
}
}
11 个解决方案
#1
新见这样接口的实现方式,懵懂中。。。
#2
o
#3
系统自动生成的吧。
#4
研究研究人写的代码。对这个机器自动生成的忽略即可。你使用的是webBrower这个老的Com组件,估计这样。
#5
这是.Net使用封装使用Com接口嘅定义方式...
#6
这是.Net使用封装使用Com接口嘅定义方式...
#7
这是一个很老的COM版的接口在C#中的声明:
[
ComImport, //这个说明它是COM导入。
SuppressUnmanagedCodeSecurity, //这个指定忽略Unmanaged代码安全检查。
TypeLibType(TypeLibTypeFlags.FOleAutomation | TypeLibTypeFlags.FDual | TypeLibTypeFlags.FHidden)), //指定这个Inteface的类型,和原来COM Interface的类型一致,否则会出错。
Guid("D30C1661-CDAF-11d0-8A3E-00C04FC9E26E") //指定这个COM的GUID,这个可以在MSDN查到。
]
public interface IWebBrowser2
{
[DispId(200)] //这个指定他的显示Id,通常系统自动,手动时无所谓。
object Application
{
[return: MarshalAs(UnmanagedType.IDispatch)] //指定这个get的返回值是一个COM的IDispatch对象,得到返回值后可以使用as得到IDispatch对象。
get; // COM没有属性,这个对应COM中的原型为:IDispatch get_Application(VOID);
}
#8
cool 谢谢了。。。。 为什么我给100分的帖子没有会的好,反而20分的就多人回呢?
#9
past
#10
hao
#11
tlbimp 产生的东西,用来调用COM的
#1
新见这样接口的实现方式,懵懂中。。。
#2
o
#3
系统自动生成的吧。
#4
研究研究人写的代码。对这个机器自动生成的忽略即可。你使用的是webBrower这个老的Com组件,估计这样。
#5
这是.Net使用封装使用Com接口嘅定义方式...
#6
这是.Net使用封装使用Com接口嘅定义方式...
#7
这是一个很老的COM版的接口在C#中的声明:
[
ComImport, //这个说明它是COM导入。
SuppressUnmanagedCodeSecurity, //这个指定忽略Unmanaged代码安全检查。
TypeLibType(TypeLibTypeFlags.FOleAutomation | TypeLibTypeFlags.FDual | TypeLibTypeFlags.FHidden)), //指定这个Inteface的类型,和原来COM Interface的类型一致,否则会出错。
Guid("D30C1661-CDAF-11d0-8A3E-00C04FC9E26E") //指定这个COM的GUID,这个可以在MSDN查到。
]
public interface IWebBrowser2
{
[DispId(200)] //这个指定他的显示Id,通常系统自动,手动时无所谓。
object Application
{
[return: MarshalAs(UnmanagedType.IDispatch)] //指定这个get的返回值是一个COM的IDispatch对象,得到返回值后可以使用as得到IDispatch对象。
get; // COM没有属性,这个对应COM中的原型为:IDispatch get_Application(VOID);
}
#8
cool 谢谢了。。。。 为什么我给100分的帖子没有会的好,反而20分的就多人回呢?
#9
past
#10
hao
#11
tlbimp 产生的东西,用来调用COM的