Nexus.Client.Games.Steam.KeyValue.LoadAsBinary C# (CSharp) Method

LoadAsBinary() public static method

Attempts to load the given filename as a binary KeyValue.
This method will swallow any exceptions that occur when reading, use ReadAsBinary if you wish to handle exceptions.
public static LoadAsBinary ( string path ) : KeyValue
path string The path to the file to load.
return KeyValue
		public static KeyValue LoadAsBinary(string path)
		{
			return LoadFromFile(path, true);
		}