diff --git a/ElectronNET.API/Process.cs b/ElectronNET.API/Process.cs
index 3a25b44..7620fa7 100644
--- a/ElectronNET.API/Process.cs
+++ b/ElectronNET.API/Process.cs
@@ -80,7 +80,8 @@ namespace ElectronNET.API
///
- ///
+ /// The process.versions property returns an object listing the version strings of
+ /// chrome and electron.
///
public Task VersionsAsync
{
@@ -93,7 +94,8 @@ namespace ElectronNET.API
///
- ///
+ /// A Boolean. When app is started by being passed as parameter to the default app, this
+ /// property is true in the main process, otherwise it is false.
///
public Task DefaultAppAsync
{
@@ -105,7 +107,8 @@ namespace ElectronNET.API
}
///
- ///
+ /// A Boolean, true when the current renderer context is the "main" renderer frame. If you
+ /// want the ID of the current frame you should use webFrame.routingId
///
public Task IsMainFrameAsync
{
@@ -117,7 +120,7 @@ namespace ElectronNET.API
}
///
- ///
+ /// A String representing the path to the resources directory.
///
public Task ResourcesPathAsync
{
@@ -129,7 +132,8 @@ namespace ElectronNET.API
}
///
- ///
+ /// The number of seconds the current Node.js process has been running. The return value
+ /// includes fractions of a second. Use Math.floor() to get whole seconds.
///
public Task UpTimeAsync
{
@@ -141,7 +145,7 @@ namespace ElectronNET.API
}
///
- ///
+ /// The PID of the electron process
///
public Task PidAsync
{
@@ -154,7 +158,7 @@ namespace ElectronNET.API
///
- ///
+ /// The operating system CPU architecture for which the Node.js binary was compiled
///
public Task ArchAsync
{
@@ -166,7 +170,7 @@ namespace ElectronNET.API
}
///
- ///
+ /// A string identifying the operating system platform on which the Node.js process is running
///
public Task PlatformAsync
{