diff --git a/src/ElectronNET.API/WebContents.cs b/src/ElectronNET.API/WebContents.cs
index f77367c..187ba6e 100644
--- a/src/ElectronNET.API/WebContents.cs
+++ b/src/ElectronNET.API/WebContents.cs
@@ -244,6 +244,37 @@ public class WebContents
return taskCompletionSource.Task;
}
+ ///
+ /// Evaluates script code in page.
+ ///
+ /// The code to execute.
+ /// if set to true simulate a user gesture.
+ /// The result of the executed code.
+ ///
+ ///
+ /// In the browser window some HTML APIs like `requestFullScreen` can only be
+ /// invoked by a gesture from the user. Setting `userGesture` to `true` will remove
+ /// this limitation.
+ ///
+ ///
+ /// Code execution will be suspended until web page stop loading.
+ ///
+ ///
+ public Task