// // System.Runtime.Remoting.Metadata.SoapMethodAttribute.cs // // Author: Duncan Mak (duncan@ximian.com) // // 2002 (C) Copyright, Ximian, Inc. // using System; using System.Runtime.Remoting.Metadata; namespace System.Runtime.Remoting.Metadata { [AttributeUsage (AttributeTargets.Method)] public sealed class SoapMethodAttribute : SoapAttribute { public SoapMethodAttribute () { } [MonoTODO] public string ResponseXmlElementName { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public string ResponseXmlNamespace { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public string ReturnXmlElementName { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public string SoapAction { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public override bool UseAttribute { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } [MonoTODO] public override string XmlNamespace { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } } } }