* FaultConverter.cs : check envelope version, not addressing version. svn path=/trunk/mcs/; revision=154426
@@ -1,3 +1,7 @@
+2010-03-30 Atsushi Enomoto <[email protected]>
+
+ * FaultConverter.cs : check envelope version, not addressing version.
2010-03-29 Atsushi Enomoto <[email protected]>
* FaultConverter.cs : implemented TryCreateException().
@@ -121,7 +121,7 @@ namespace System.ServiceModel.Channels
protected override bool OnTryCreateFaultMessage (Exception error, out Message message)
{
- if (version.Addressing.Equals (AddressingVersion.None)) {
+ if (version.Envelope.Equals (EnvelopeVersion.None)) {
message = null;
return false;
}