webResposneから3行目(または1行だけをログに記録できない場合は1行目から3行目)のみをログに記録しようとしています。
これが私が今使っているコードの抜粋です。
StreamReader read = new StreamReader(myHttpWebResponse.GetResponseStream(), System.Text.Encoding.UTF8);
String result = read.ReadToEnd();
Log("Access", Server.HtmlEncode(result), "Success");
次の出力が得られます
<html>
<head>
<title>Access is Granted.</title>
<style>
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
...
等々。
「(title> Access isGranted。(/ title>」」をログに記録し、他の何も(またはその行の後は何も)印刷しないようにします。
どうすればいいですか?
ありがとうございました