PartialCachingAttribute.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / PartialCachingAttribute.cs / 1 / PartialCachingAttribute.cs

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

/* 
 * Fragment caching attribute 
 *
 * Copyright (c) 1999 Microsoft Corporation 
 */

namespace System.Web.UI {
 
using System;
using System.Collections; 
using System.ComponentModel; 
using System.Security.Permissions;
 
/*
 * This class defines the PartialCachingAttribute attribute that can be placed on
 * user controls classes to enable the fragmant caching feature.
 */ 

///  
///    [To be supplied.] 
/// 
[AttributeUsage(AttributeTargets.Class)] 
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
public sealed class PartialCachingAttribute : Attribute {
    private int _duration;
 
    /// 
    ///    [To be supplied.] 
    ///  
    public int Duration { get { return _duration;}}
 
    private string _varyByParams;

    /// 
    ///    [To be supplied.] 
    /// 
    public string VaryByParams { get { return _varyByParams; } } 
 
    private string _varyByControls;
 
    /// 
    ///    [To be supplied.]
    /// 
    public string VaryByControls { get { return _varyByControls; } } 

    private string _varyByCustom; 
 
    /// 
    ///    [To be supplied.] 
    /// 
    public string VaryByCustom { get { return _varyByCustom; } }

    private string _sqlDependency; 

    ///  
    ///    [To be supplied.] 
    /// 
    public string SqlDependency { get { return _sqlDependency; } } 

    private bool _shared;

    ///  
    ///    [To be supplied.]
    ///  
    public bool Shared { get { return _shared; } } 

 

    /// 
    ///    [To be supplied.]
    ///  
    public PartialCachingAttribute(int duration) {
        _duration = duration; 
    } 

 
    /// 
    ///    [To be supplied.]
    /// 
    public PartialCachingAttribute(int duration, string varyByParams, 
        string varyByControls, string varyByCustom) {
        _duration = duration; 
        _varyByParams = varyByParams; 
        _varyByControls = varyByControls;
        _varyByCustom = varyByCustom; 
    }


    ///  
    ///    [To be supplied.]
    ///  
    public PartialCachingAttribute(int duration, string varyByParams, 
        string varyByControls, string varyByCustom, bool shared) {
        _duration = duration; 
        _varyByParams = varyByParams;
        _varyByControls = varyByControls;
        _varyByCustom = varyByCustom;
        _shared = shared; 
    }
 
 
    /// 
    ///    [To be supplied.] 
    /// 
    public PartialCachingAttribute(int duration, string varyByParams,
        string varyByControls, string varyByCustom, string sqlDependency, bool shared) {
        _duration = duration; 
        _varyByParams = varyByParams;
        _varyByControls = varyByControls; 
        _varyByCustom = varyByCustom; 
        _shared = shared;
        _sqlDependency = sqlDependency; 
    }

}
 
}

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