File tree Expand file tree Collapse file tree 3 files changed +12
-20
lines changed Expand file tree Collapse file tree 3 files changed +12
-20
lines changed Original file line number Diff line number Diff line change
1
+ namespace ElectronNET . API
2
+ {
3
+ /// <summary>
4
+ /// An object listing the version strings specific to Electron
5
+ /// </summary>
6
+ /// <param name="Chrome">Value representing Chrome's version string</param>
7
+ /// <param name="Electron">Value representing Electron's version string</param>
8
+ /// <returns></returns>
9
+ public record ProcessVersions ( string Chrome , string Electron ) ;
10
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -83,11 +83,11 @@ public Task<string> TypeAsync
83
83
/// The process.versions property returns an object listing the version strings of
84
84
/// chrome and electron.
85
85
/// </summary>
86
- public Task < Versions > VersionsAsync
86
+ public Task < ProcessVersions > VersionsAsync
87
87
{
88
88
get
89
89
{
90
- return BridgeConnector . GetValueOverSocketAsync < Versions > (
90
+ return BridgeConnector . GetValueOverSocketAsync < ProcessVersions > (
91
91
"process-versions" , "process-versions-Completed" ) ;
92
92
}
93
93
}
You can’t perform that action at this time.
0 commit comments