mscorlib(4.0.0.0) API with additions
EndPoint.cs
1 using System.Net.Sockets;
2 
3 namespace System.Net
4 {
7  [global::__DynamicallyInvokable]
8  public abstract class EndPoint
9  {
13  [global::__DynamicallyInvokable]
14  public virtual AddressFamily AddressFamily
15  {
16  [global::__DynamicallyInvokable]
17  get
18  {
19  throw ExceptionHelper.PropertyNotImplementedException;
20  }
21  }
22 
26  [global::__DynamicallyInvokable]
27  public virtual SocketAddress Serialize()
28  {
29  throw ExceptionHelper.MethodNotImplementedException;
30  }
31 
36  [global::__DynamicallyInvokable]
37  public virtual EndPoint Create(SocketAddress socketAddress)
38  {
39  throw ExceptionHelper.MethodNotImplementedException;
40  }
41 
43  [global::__DynamicallyInvokable]
44  protected EndPoint()
45  {
46  }
47  }
48 }
virtual EndPoint Create(SocketAddress socketAddress)
Creates an T:System.Net.EndPoint instance from a T:System.Net.SocketAddress instance.
Definition: EndPoint.cs:37
Definition: __Canon.cs:3
EndPoint()
Initializes a new instance of the T:System.Net.EndPoint class.
Definition: EndPoint.cs:44
AddressFamily
Specifies the addressing scheme that an instance of the T:System.Net.Sockets.Socket class can use.
Definition: AddressFamily.cs:5
Stores serialized information from T:System.Net.EndPoint derived classes.
Definition: SocketAddress.cs:9
virtual SocketAddress Serialize()
Serializes endpoint information into a T:System.Net.SocketAddress instance.
Definition: EndPoint.cs:27
Specifies that the class can be serialized.
Identifies a network address. This is an abstract class.
Definition: EndPoint.cs:8