//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.Services.Protocols { using System; /// /// /// [To be supplied.] /// [AttributeUsage(AttributeTargets.Method)] public sealed class HttpMethodAttribute : System.Attribute { Type returnFormatter; Type parameterFormatter; /// /// /// [To be supplied.] /// public HttpMethodAttribute() { returnFormatter = null; parameterFormatter = null; } /// /// /// [To be supplied.] /// public HttpMethodAttribute(Type returnFormatter, Type parameterFormatter) { this.returnFormatter = returnFormatter; this.parameterFormatter = parameterFormatter; } /// /// /// [To be supplied.] /// public Type ReturnFormatter { get { return returnFormatter; } set { returnFormatter = value; } } /// /// /// [To be supplied.] /// public Type ParameterFormatter { get { return parameterFormatter; } set { parameterFormatter = value; } } } }