Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2004-07-10 03:21:42 +0400
committerLluis Sanchez <lluis@novell.com>2004-07-10 03:21:42 +0400
commit42281c48459373c3e45e4768120c53f00c64c1a4 (patch)
treec67d6a5f289e60b4c4e43242c96409b941e36e2a /mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapHeaderException.cs
parent4e27c099631e7515ccf74071fed3f4ca71c8ef14 (diff)
* HttpSimpleClientProtocol.cs, HttpWebClientProtocol.cs,
SoapClientMessage.cs, SoapHttpClientProtocol.cs, SoapServerMessage.cs: Added 2.0 stubs. * SoapException.cs, SoapHeader.cs, SoapHeaderException.cs, SoapMessage.cs, SoapRpcMethodAttribute.cs, SoapRpcServiceAttribute.cs: Implemented some new methods and properties. * WebClientProtocol.cs: uri field must be internal. svn path=/trunk/mcs/; revision=30972
Diffstat (limited to 'mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapHeaderException.cs')
-rw-r--r--mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapHeaderException.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapHeaderException.cs b/mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapHeaderException.cs
index 708cfccb38c..6a1ec3d22e0 100644
--- a/mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapHeaderException.cs
+++ b/mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapHeaderException.cs
@@ -54,6 +54,37 @@ namespace System.Web.Services.Protocols {
: base (message, code, actor, innerException)
{
}
+
+#if NET_2_0
+
+ public SoapHeaderException (
+ string message,
+ XmlQualifiedName code,
+ string actor,
+ string role,
+ string lang,
+ SoapFaultSubcode subcode,
+ Exception innerException)
+
+ : base (message, code, actor, role, lang, null, subcode, innerException)
+ {
+
+ }
+
+ public SoapHeaderException (
+ string message,
+ XmlQualifiedName code,
+ string actor,
+ string role,
+ SoapFaultSubcode subcode,
+ Exception innerException)
+
+ : base (message, code, actor, role, null, subcode, innerException)
+ {
+
+ }
+
+#endif
#endregion // Constructors
}