EndPoint.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / EndPoint.cs / 1 / EndPoint.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

using System; 
using System.Runtime.InteropServices; 
using System.Net.Sockets;
 
namespace System.Net {

    // Generic abstraction to identify network addresses
 
    /// 
    ///     
    ///       Identifies a network address. 
    ///    
    ///  
    [Serializable]
    public abstract class EndPoint {
        /// 
        ///     
        ///       Returns the Address Family to which the EndPoint belongs.
        ///     
        ///  

        public virtual AddressFamily AddressFamily { 
            get {
                throw ExceptionHelper.PropertyNotImplementedException;
            }
        } 

        ///  
        ///     
        ///       Serializes EndPoint information into a SocketAddress structure.
        ///     
        /// 
        public virtual SocketAddress Serialize() {
            throw ExceptionHelper.MethodNotImplementedException;
        } 

        ///  
        ///     
        ///       Creates an EndPoint instance from a SocketAddress structure.
        ///     
        /// 
        public virtual EndPoint Create(SocketAddress socketAddress) {
            throw ExceptionHelper.MethodNotImplementedException;
        } 

    }; // abstract class EndPoint 
 

} // namespace System.Net 



                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK