| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- //
- // System.Runtime.Remoting.Metadata.SoapMethodAttribute.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // 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 ();
- }
- }
- }
- }
|