31 lines
513 B
C#
31 lines
513 B
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace WebKit {
|
|
|
|
using System;
|
|
|
|
public delegate void LoadFailedHandler(object o, LoadFailedArgs args);
|
|
|
|
public class LoadFailedArgs : GLib.SignalArgs {
|
|
public WebKit.LoadEvent LoadEvent{
|
|
get {
|
|
return (WebKit.LoadEvent) Args [0];
|
|
}
|
|
}
|
|
|
|
public string FailingUri{
|
|
get {
|
|
return (string) Args [1];
|
|
}
|
|
}
|
|
|
|
public IntPtr Error{
|
|
get {
|
|
return (IntPtr) Args [2];
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|