@@ -80,7 +80,8 @@ public Task<string> TypeAsync
80
80
81
81
82
82
/// <summary>
83
- ///
83
+ /// The process.versions property returns an object listing the version strings of
84
+ /// chrome and electron.
84
85
/// </summary>
85
86
public Task < Versions > VersionsAsync
86
87
{
@@ -93,7 +94,8 @@ public Task<Versions> VersionsAsync
93
94
94
95
95
96
/// <summary>
96
- ///
97
+ /// A Boolean. When app is started by being passed as parameter to the default app, this
98
+ /// property is true in the main process, otherwise it is false.
97
99
/// </summary>
98
100
public Task < bool > DefaultAppAsync
99
101
{
@@ -105,7 +107,8 @@ public Task<bool> DefaultAppAsync
105
107
}
106
108
107
109
/// <summary>
108
- ///
110
+ /// A Boolean, true when the current renderer context is the "main" renderer frame. If you
111
+ /// want the ID of the current frame you should use webFrame.routingId
109
112
/// </summary>
110
113
public Task < bool > IsMainFrameAsync
111
114
{
@@ -117,7 +120,7 @@ public Task<bool> IsMainFrameAsync
117
120
}
118
121
119
122
/// <summary>
120
- ///
123
+ /// A String representing the path to the resources directory.
121
124
/// </summary>
122
125
public Task < string > ResourcesPathAsync
123
126
{
@@ -129,7 +132,8 @@ public Task<string> ResourcesPathAsync
129
132
}
130
133
131
134
/// <summary>
132
- ///
135
+ /// The number of seconds the current Node.js process has been running. The return value
136
+ /// includes fractions of a second. Use Math.floor() to get whole seconds.
133
137
/// </summary>
134
138
public Task < double > UpTimeAsync
135
139
{
@@ -141,7 +145,7 @@ public Task<double> UpTimeAsync
141
145
}
142
146
143
147
/// <summary>
144
- ///
148
+ /// The PID of the electron process
145
149
/// </summary>
146
150
public Task < int > PidAsync
147
151
{
@@ -154,7 +158,7 @@ public Task<int> PidAsync
154
158
155
159
156
160
/// <summary>
157
- ///
161
+ /// The operating system CPU architecture for which the Node.js binary was compiled
158
162
/// </summary>
159
163
public Task < string > ArchAsync
160
164
{
@@ -166,7 +170,7 @@ public Task<string> ArchAsync
166
170
}
167
171
168
172
/// <summary>
169
- ///
173
+ /// A string identifying the operating system platform on which the Node.js process is running
170
174
/// </summary>
171
175
public Task < string > PlatformAsync
172
176
{
0 commit comments