| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- //
- // System.Net.WebHeaderCollection
- //
- // Author:
- // Lawrence Pit ([email protected])
- //
- using System;
- using System.Collections.Specialized;
- using System.Runtime.InteropServices;
- using System.Runtime.Serialization;
- namespace System.Net
- {
- [Serializable]
- [ComVisible(true)]
- public class WebHeaderCollection : NameValueCollection, ISerializable
- {
- // Constructors
-
- public WebHeaderCollection ()
- : base ()
- {
- }
-
- [MonoTODO]
- protected WebHeaderCollection (SerializationInfo serializationInfo,
- StreamingContext streamingContext)
- {
- throw new NotImplementedException ();
- }
-
- // Properties
-
- public virtual long ContentLength {
- get { throw new NotSupportedException (); }
- set { throw new NotSupportedException (); }
- }
- // Methods
-
- [MonoTODO]
- public void Add (string header)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public override void Add (string name, string value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected void AddWithoutValidate (string headerName, string headerValue)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public override string [] GetValues (string header)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static bool IsRestricted (string headerName)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void OnDeserialization (object sender)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void Remove (string name)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void Set (string name, string value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public byte[] ToByteArray ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override string ToString ()
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- void ISerializable.GetObjectData (SerializationInfo serializationInfo,
- StreamingContext streamingContext)
- {
- throw new NotImplementedException ();
- }
- }
- }
|