[Http]: Clear the 'SendChunked' flag when redirecting.
[mono.git] / mcs / class / System / System.CodeDom / CodePrimitiveExpression.cs
index 8025e8159d49523cc127b3dd68c49d56706ab058..090d255ecd951cdaaf702b915f4ef812286b1f45 100644 (file)
@@ -63,5 +63,13 @@ namespace System.CodeDom
                                this.value = value;
                        }
                }
+
+               //
+               // ICodeDomVisitor method
+               //
+               internal override void Accept (ICodeDomVisitor visitor)
+               {
+                       visitor.Visit (this);
+               }
        }
 }