You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@@ -0,0 +1,40 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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,
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user