Scordo / TS3QueryLib.Net

This library allows you to query team speak 3 servers using the query port. All queries are implemented type safe and the library is written to work with .Net 3.5 SP1 or higher inluding support for silverlight 3.0 or higher and windows phone 7.1.
BSD 3-Clause "New" or "Revised" License
51 stars 15 forks source link

- Updated `beginPos` parameter of GetLogEntries() to UInt32. #4

Closed FireEmerald closed 9 years ago

FireEmerald commented 10 years ago

NOTE: The log entry's has to be loaded progressively from the end to start of the log file. The beginPos parameter is used in combination of the last_pos response to retrieve more then 100 log entries. last_pos is a part of each response from the server after usage from GetLogEntries().

TODO:

FireEmerald commented 10 years ago

Closes #3

JohnnyCrazy commented 10 years ago

To fix #3 completly, you could change how the DateTime gets parsed. (So there is no FormatException at any point)

Just use DateTime.TryParse before you create the new LogEntry. If it was successful, add it. If not, the TimeStamp will be null

FireEmerald commented 9 years ago

@JohnnyCrazy / @Scordo Updated.