FileResponseElement.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Cache / FileResponseElement.cs / 1305376 / FileResponseElement.cs

                            using System; 
using System.Security.Permissions;
using System.Web;
using System.Web.Caching;
 
namespace System.Web.Caching {
    [Serializable] 
    [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Unrestricted)] 
    public class FileResponseElement: ResponseElement {
        private  String               _path; 
        private  long                 _offset;
        private  long                 _length;

        public   String               Path     { get { return _path; } } 
        public   long                 Offset   { get { return _offset; } }
        public   long                 Length   { get { return _length; } } 
 
        private FileResponseElement() { } // hide default constructor
 
        public FileResponseElement(String path, long offset, long length) {
            if (path == null)
                throw new ArgumentNullException("path");
            if (offset < 0) 
                throw new ArgumentOutOfRangeException("offset");
            if (length < 0) 
                throw new ArgumentOutOfRangeException("length"); 

            _path = path; 
            _offset = offset;
            _length = length;
        }
    } 
}

// 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