From ea7b182b2a15074cd54281326c11511f75894ae1 Mon Sep 17 00:00:00 2001 From: Neale Ferguson Date: Fri, 20 Jul 2012 10:20:10 -0400 Subject: [PATCH] Return false instead of throwing a not implemented condition --- mcs/class/System/System.Net/WebResponse.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mcs/class/System/System.Net/WebResponse.cs b/mcs/class/System/System.Net/WebResponse.cs index 43864f4424f..a4140ebee58 100644 --- a/mcs/class/System/System.Net/WebResponse.cs +++ b/mcs/class/System/System.Net/WebResponse.cs @@ -72,7 +72,9 @@ namespace System.Net public virtual bool IsFromCache { get { - throw GetMustImplement (); + return false; + // Better to return false than to kill the application + // throw GetMustImplement (); } } -- 2.25.1