HttpChannelBindingToken.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / HttpChannelBindingToken.cs / 1 / HttpChannelBindingToken.cs

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

/* 
 * HttpChannelBindingToken class 
 *
 * Copyright (c) 2008 Microsoft Corporation 
 */

namespace System.Web {
 
    using System.Security.Permissions;
    using System.Security.Authentication.ExtendedProtection; 
 

    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 
    internal sealed class HttpChannelBindingToken : ChannelBinding {

        private int _size;
 
        internal HttpChannelBindingToken(IntPtr token, int tokenSize) {
            SetHandle(token); 
            _size = tokenSize; 
        }
 
        protected override bool ReleaseHandle() {
            SetHandle(IntPtr.Zero);
            _size = 0;
 
            return true;
        } 
 
        public override int Size {
            get { 
                return _size;
            }
        }
    } 
}

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

/* 
 * HttpChannelBindingToken class 
 *
 * Copyright (c) 2008 Microsoft Corporation 
 */

namespace System.Web {
 
    using System.Security.Permissions;
    using System.Security.Authentication.ExtendedProtection; 
 

    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 
    internal sealed class HttpChannelBindingToken : ChannelBinding {

        private int _size;
 
        internal HttpChannelBindingToken(IntPtr token, int tokenSize) {
            SetHandle(token); 
            _size = tokenSize; 
        }
 
        protected override bool ReleaseHandle() {
            SetHandle(IntPtr.Zero);
            _size = 0;
 
            return true;
        } 
 
        public override int Size {
            get { 
                return _size;
            }
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

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