C# Class SteamKit2.ContentServerClient

Represents a client that is capable of connecting to a Steam2 content server.
Inheritance: ServerClient
Mostrar archivo Open project: Top-Cat/SteamBot Class Usage Examples

Public Methods

Method Description
GetCellID ( ) : uint

Requests the cell ID of the currently connected content server.

OpenPackage ( uint cellId ) : PackageSession

Opens a package session with the package server.

OpenStorage ( uint depotId, uint depotVersion ) : StorageSession

Opens a storage session with the storage server.

OpenStorage ( uint depotId, uint depotVersion, uint cellId ) : StorageSession

Opens a storage session with the storage server.

OpenStorage ( uint depotId, uint depotVersion, uint cellId, Credentials credentials ) : StorageSession

Opens a storage session with the storage server.

Method Details

GetCellID() public method

Requests the cell ID of the currently connected content server.
public GetCellID ( ) : uint
return uint

OpenPackage() public method

Opens a package session with the package server.
public OpenPackage ( uint cellId ) : PackageSession
cellId uint The cell id.
return PackageSession

OpenStorage() public method

Opens a storage session with the storage server.
public OpenStorage ( uint depotId, uint depotVersion ) : StorageSession
depotId uint The depot id.
depotVersion uint The depot version.
return StorageSession

OpenStorage() public method

Opens a storage session with the storage server.
public OpenStorage ( uint depotId, uint depotVersion, uint cellId ) : StorageSession
depotId uint The depot id.
depotVersion uint The depot version.
cellId uint The cell id.
return StorageSession

OpenStorage() public method

Opens a storage session with the storage server.
public OpenStorage ( uint depotId, uint depotVersion, uint cellId, Credentials credentials ) : StorageSession
depotId uint The depot id.
depotVersion uint The depot version.
cellId uint The cell id.
credentials Credentials The credentials.
return StorageSession