PingOptions.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Net / System / Net / NetworkInformation / PingOptions.cs / 1 / PingOptions.cs

                             //determines which options will be used for sending icmp requests, as well as what options 
//were set in the returned icmp reply.

namespace System.Net.NetworkInformation
{ 
    // Represent the possible ip options used for the icmp packet
    public class PingOptions 
    { 
        const int DontFragmentFlag = 2;
        int ttl = 128; 
        bool dontFragment;

        internal PingOptions (IPOptions options) {
            this.ttl = options.ttl; 
            this.dontFragment = ((options.flags & DontFragmentFlag) > 0 ? true : false);
        } 
 
        public PingOptions (int ttl, bool dontFragment) {
            if (ttl <= 0) { 
                throw new ArgumentOutOfRangeException("ttl");
            }

            this.ttl = ttl; 
            this.dontFragment = dontFragment;
        } 
 
        public PingOptions () {
        } 

        public int Ttl {
            get {
                return ttl; 
            }
            set { 
                if (value <= 0) { 
                    throw new ArgumentOutOfRangeException("value");
                } 
                ttl = value; //useful to discover routes
            }
        }
 
        public bool DontFragment {
            get { 
                return dontFragment; 
            }
            set { 
                dontFragment = value;  //useful for discovering mtu
            }
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
 //determines which options will be used for sending icmp requests, as well as what options 
//were set in the returned icmp reply.

namespace System.Net.NetworkInformation
{ 
    // Represent the possible ip options used for the icmp packet
    public class PingOptions 
    { 
        const int DontFragmentFlag = 2;
        int ttl = 128; 
        bool dontFragment;

        internal PingOptions (IPOptions options) {
            this.ttl = options.ttl; 
            this.dontFragment = ((options.flags & DontFragmentFlag) > 0 ? true : false);
        } 
 
        public PingOptions (int ttl, bool dontFragment) {
            if (ttl <= 0) { 
                throw new ArgumentOutOfRangeException("ttl");
            }

            this.ttl = ttl; 
            this.dontFragment = dontFragment;
        } 
 
        public PingOptions () {
        } 

        public int Ttl {
            get {
                return ttl; 
            }
            set { 
                if (value <= 0) { 
                    throw new ArgumentOutOfRangeException("value");
                } 
                ttl = value; //useful to discover routes
            }
        }
 
        public bool DontFragment {
            get { 
                return dontFragment; 
            }
            set { 
                dontFragment = value;  //useful for discovering mtu
            }
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

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