| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //
- // System.Runtime.Remoting.Metadata.SoapAttribute.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- using System;
- namespace System.Runtime.Remoting.Metadata {
- public class SoapAttribute : Attribute
- {
- public SoapAttribute ()
- {
- }
- protected string ProtXmlNamespace;
- protected object ReflectInfo;
- [MonoTODO]
- public virtual bool Embedded {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public virtual bool UseAttribute {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public virtual string XmlNamespace {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- }
- }
|