* GridView.cs: always create Header/Fotter rows, but render only when
[mono.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Referral / ReferralOutputFilter.cs
1 //
2 // ReferralOutputFilter.cs: Referral SOAP Output Filter
3 //
4 // Author:
5 //      Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
8 //
9
10 using System;
11
12 namespace Microsoft.Web.Services.Referral {
13
14         public class ReferralOutputFilter : SoapOutputFilter {
15
16                 public ReferralOutputFilter () {}
17
18                 [MonoTODO]
19                 public override void ProcessMessage (SoapEnvelope envelope) 
20                 {
21                         if (envelope == null)
22                                 throw new ArgumentNullException ("envelope");
23                         // TODO
24                 }
25         }
26 }