1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
//------------------------------------------------------------------------------
// <copyright file="PartialCachingAttribute.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
* Fragment caching attribute
*
* Copyright (c) 1999 Microsoft Corporation
*/
namespace System.Web.UI {
using System;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Security.Permissions;
using System.Web.Caching;
/*
* This class defines the PartialCachingAttribute attribute that can be placed on
* user controls classes to enable the fragmant caching feature.
*/
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
[AttributeUsage(AttributeTargets.Class)]
[SuppressMessage("Microsoft.Design", "CA1019:DefineAccessorsForAttributeArguments", Justification = "Optional arguments have already shipped public overloads")]
public sealed class PartialCachingAttribute : Attribute {
private int _duration;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public int Duration {
get {
return _duration;
}
set {
_duration = value;
}
}
private string _varyByParams;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public string VaryByParams {
get {
return _varyByParams;
}
set {
_varyByParams = value;
}
}
private string _varyByControls;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public string VaryByControls {
get {
return _varyByControls;
}
set {
_varyByControls = value;
}
}
private string _varyByCustom;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public string VaryByCustom {
get {
return _varyByCustom;
}
set {
_varyByCustom = value;
}
}
private string _sqlDependency;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public string SqlDependency {
get {
return _sqlDependency;
}
set {
_sqlDependency = value;
}
}
private bool _shared;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public bool Shared {
get {
return _shared;
}
set {
_shared = value;
}
}
private string _providerName;
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public string ProviderName {
get {
if (_providerName == null) {
return OutputCache.ASPNET_INTERNAL_PROVIDER_NAME;
}
else {
return _providerName;
}
}
set {
if (value == OutputCache.ASPNET_INTERNAL_PROVIDER_NAME) {
value = null;
}
_providerName = value;
}
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public PartialCachingAttribute(int duration) {
_duration = duration;
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public PartialCachingAttribute(int duration, string varyByParams,
string varyByControls, string varyByCustom)
:this(duration, varyByParams, varyByControls, varyByCustom, null, false)
{
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public PartialCachingAttribute(int duration, string varyByParams,
string varyByControls, string varyByCustom, bool shared)
:this(duration, varyByParams, varyByControls, varyByCustom, null, shared)
{
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
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;
}
}
}
|