response = client.DownloadString(baseurl + "?getpage=../html/login_sid.lua");
MatchCollection matchList = exp.Matches(response);
return matchList[0].Groups[1].Value;
reicht das?
Gruß
Vielen Dank für die Recherche!Fritz.cs
Line 292danach hat response den Inhalt von Anhang (als HTML)Code:response = client.DownloadString(baseurl + "?getpage=../html/login_sid.lua");
line 303danach matchList ist leer (wegen neuen Anmeldungsverfahren), und in der Zeile 305Code:MatchCollection matchList = exp.Matches(response);
krachts weil matchList == nil ist, und Zugriff auf [0] führt zu eine Exception.Code:return matchList[0].Groups[1].Value;
Zeilennummern basierend auf SVN r4518.