//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.Services.Protocols { using System.Web.Services; using System.Xml.Serialization; using System; using System.Reflection; using System.Collections; using System.IO; using System.ComponentModel; /// /// /// [To be supplied.] /// [Flags] public enum SoapHeaderDirection { /// /// /// [To be supplied.] /// In = 0x1, /// /// /// [To be supplied.] /// Out = 0x2, /// /// /// [To be supplied.] /// InOut = 0x3, /// Fault = 0x4, } }