From 8daf4d149801b24060735fb04dd12fa0aaac301f Mon Sep 17 00:00:00 2001 From: Todd Schavey Date: Mon, 3 Jan 2022 00:21:48 -0500 Subject: [PATCH] #647 update XML documentation to ElectronNET.API Process members --- src/ElectronNET.API/Process.cs | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/ElectronNET.API/Process.cs b/src/ElectronNET.API/Process.cs index 0976d20..b4a9d09 100644 --- a/src/ElectronNET.API/Process.cs +++ b/src/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 {