e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
41 lines
1.6 KiB
C#
41 lines
1.6 KiB
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="SoapHeaderDirection.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
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;
|
|
|
|
/// <include file='doc\SoapHeaderDirection.uex' path='docs/doc[@for="SoapHeaderDirection"]/*' />
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
[Flags]
|
|
public enum SoapHeaderDirection {
|
|
/// <include file='doc\SoapHeaderDirection.uex' path='docs/doc[@for="SoapHeaderDirection.In"]/*' />
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
In = 0x1,
|
|
/// <include file='doc\SoapHeaderDirection.uex' path='docs/doc[@for="SoapHeaderDirection.Out"]/*' />
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
Out = 0x2,
|
|
/// <include file='doc\SoapHeaderDirection.uex' path='docs/doc[@for="SoapHeaderDirection.InOut"]/*' />
|
|
/// <devdoc>
|
|
/// <para>[To be supplied.]</para>
|
|
/// </devdoc>
|
|
InOut = 0x3,
|
|
/// <include file='doc\SoapHeaderDirection.uex' path='docs/doc[@for="SoapHeaderDirection.Fault"]/*' />
|
|
Fault = 0x4,
|
|
}
|
|
}
|