| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //
- // System.Runtime.Serialization.Formatters.SoapMessage.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- using System;
- using System.Runtime.Remoting.Messaging;
- using System.Runtime.Serialization.Formatters;
- namespace System.Runtime.Serialization.Formatters {
- [Serializable]
- public class SoapMessage : ISoapMessage
- {
- [MonoTODO]
- public SoapMessage ()
- {
- throw new NotImplementedException ();
- }
- public Header[] Headers {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string MethodName {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string [] ParamNames {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public Type [] ParamTypes {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public object [] ParamValues {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string XmlNameSpace {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- }
- }
|