本文整理汇总了C#中WebControl.Invoke方法的典型用法代码示例。如果您正苦于以下问题:C# WebControl.Invoke方法的具体用法?C# WebControl.Invoke怎么用?C# WebControl.Invoke使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WebControl
的用法示例。
在下文中一共展示了WebControl.Invoke方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PushButton
public static dynamic PushButton( WebControl webBrowser, String type, int index ) {
try {
if ( webBrowser != null ) {
var answer = webBrowser.Invoke( new Func<JSObject>( () => {
dynamic document = ( JSObject )webBrowser.ExecuteJavascriptWithResult( String.Format( "document.getElementsByTagName('submit')[{0}].click();", index ) );
return document;
} ) );
return answer;
}
}
catch ( Exception exception ) {
exception.Error();
}
return null;
}
示例2: GetJavascriptWithResult
/// <summary>
/// </summary>
/// <param name="webBrowser"></param>
/// <param name="javascript"></param>
/// <param name="result"></param>
/// <returns></returns>
public static Boolean GetJavascriptWithResult( WebControl webBrowser, String javascript, out JSValue result ) {
result = default( JSValue );
if ( webBrowser == null ) {
return false;
}
try {
result = ( JSValue )webBrowser.Invoke( new Func<JSValue>( () => webBrowser.ExecuteJavascriptWithResult( javascript ) ) );
return true;
}
catch ( Exception exception ) {
exception.Error();
}
return false;
}
示例3: ClickSubmit
public static Boolean ClickSubmit( WebControl webBrowser, int index = 0 ) {
try {
if ( webBrowser != null ) {
webBrowser.Invoke( new Action( () => webBrowser.ExecuteJavascript( String.Format( "document.querySelectorAll(\"button[type='submit']\")[{0}].click();", index ) ) ) );
return true;
}
}
catch ( Exception exception ) {
exception.Error();
}
return false;
}
示例4: GetElementsByTagName
public static dynamic GetElementsByTagName( WebControl webBrowser, String type ) {
try {
if ( webBrowser != null ) {
var answer = webBrowser.Invoke( new Func<JSObject>( () => {
dynamic document = ( JSObject )webBrowser.ExecuteJavascriptWithResult( "document" );
using ( document ) {
try {
return document.getElementsByTagName( type );
}
catch ( Exception exception ) {
exception.Error();
}
return null;
}
} ) );
return answer;
}
}
catch ( Exception exception ) {
exception.Error();
}
return null;
}
示例5: ByIDSetValue
public static Boolean ByIDSetValue( WebControl webBrowser, String id, String text ) {
try {
if ( webBrowser != null ) {
webBrowser.Invoke( new Action( () => webBrowser.ExecuteJavascript( String.Format( "document.getElementById( {0} ).value=\"{1}\";", id, text ) ) ) );
return true;
}
}
catch ( Exception exception ) {
exception.Error();
}
return false;
}