| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // System.Net.HttpWebRequest
- //
- // Author:
- // Lawrence Pit ([email protected])
- //
- using System;
- using System.Collections;
- using System.IO;
- using System.Runtime.Serialization;
- namespace System.Net
- {
- [Serializable]
- public class HttpWebRequest : WebRequest, ISerializable
- {
- private Uri uri;
-
- // Constructors
-
- internal HttpWebRequest (Uri uri)
- {
- this.uri = uri;
- }
-
- protected HttpWebRequest (SerializationInfo serializationInfo, StreamingContext streamingContext)
- {
- throw new NotSupportedException ();
- }
-
- // Properties
-
- // Methods
-
- void ISerializable.GetObjectData (SerializationInfo serializationInfo,
- StreamingContext streamingContext)
- {
- throw new NotSupportedException ();
- }
- }
- }
|