//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.Services.Protocols {
using System;
using System.Reflection;
using System.Xml.Serialization;
using System.Web.Services.Description;
using System.Runtime.InteropServices;
///
///
/// [To be supplied.]
///
[AttributeUsage(AttributeTargets.Class)]
public sealed class SoapRpcServiceAttribute : Attribute {
SoapServiceRoutingStyle routingStyle = SoapServiceRoutingStyle.SoapAction;
SoapBindingUse use = SoapBindingUse.Encoded;
///
///
/// [To be supplied.]
///
public SoapRpcServiceAttribute() {
}
///
public SoapServiceRoutingStyle RoutingStyle {
get { return routingStyle; }
set { routingStyle = value; }
}
///
///
/// [To be supplied.]
///
[ComVisible(false)]
public SoapBindingUse Use {
get { return use; }
set { use = value; }
}
}
}