Struct GameFolderLocator.SteamLibraryGameInfo ​
Namespace: ValveResourceFormat.IO
Assembly: ValveResourceFormat.dll
Represents an installed Steam app (game, tool, application, etc.)
csharp
public record struct GameFolderLocator.SteamLibraryGameInfo : IEquatable<GameFolderLocator.SteamLibraryGameInfo>Implements ​
IEquatable<GameFolderLocator.SteamLibraryGameInfo>
Constructors ​
SteamLibraryGameInfo(int, string, string, string) ​
Represents an installed Steam app (game, tool, application, etc.)
csharp
public SteamLibraryGameInfo(int AppID, string AppName, string SteamPath, string GamePath)Parameters ​
AppID int
AppID of the app.
AppName string
Name of the app.
SteamPath string
Path to the root of the Steam library where this app is installed. ("C:/Steam/steamapps")
GamePath string
Full path to the installation directory of the app. ("C:/Steam/steamapps/common/dota 2 beta")
Properties ​
AppID ​
AppID of the app.
csharp
public int AppID { readonly get; set; }Property Value ​
AppName ​
Name of the app.
csharp
public string AppName { readonly get; set; }Property Value ​
GamePath ​
Full path to the installation directory of the app. ("C:/Steam/steamapps/common/dota 2 beta")
csharp
public string GamePath { readonly get; set; }Property Value ​
SteamPath ​
Path to the root of the Steam library where this app is installed. ("C:/Steam/steamapps")
csharp
public string SteamPath { readonly get; set; }
