mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 23:31:13 -05:00
added pm command
fixed connections not incrementing fixed formatting of ban response added ability of multiple instances running
This commit is contained in:
@ -17,14 +17,22 @@ namespace IW4MAdmin
|
||||
|
||||
public String Read()
|
||||
{
|
||||
WebResponse Resp = ConnectionHandle.GetResponse();
|
||||
StreamReader data_in = new StreamReader(Resp.GetResponseStream());
|
||||
String result = data_in.ReadToEnd();
|
||||
try
|
||||
{
|
||||
WebResponse Resp = ConnectionHandle.GetResponse();
|
||||
StreamReader data_in = new StreamReader(Resp.GetResponseStream());
|
||||
String result = data_in.ReadToEnd();
|
||||
|
||||
data_in.Close();
|
||||
Resp.Close();
|
||||
data_in.Close();
|
||||
Resp.Close();
|
||||
|
||||
return result;
|
||||
return result;
|
||||
}
|
||||
|
||||
catch (System.Net.WebException E)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
private String Location;
|
||||
|
Reference in New Issue
Block a user