Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / SqlDataSourceCache.cs / 1 / SqlDataSourceCache.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Collections; using System.ComponentModel; using System.Web.Caching; internal sealed class SqlDataSourceCache : DataSourceCache { internal const string Sql9CacheDependencyDirective = "CommandNotification"; ////// A semi-colon delimited string indicating which databases to use for the dependency in the format "database1:table1;database2:table2". /// public string SqlCacheDependency { get { object o = ViewState["SqlCacheDependency"]; if (o != null) return (string)o; return String.Empty; } set { ViewState["SqlCacheDependency"] = value; } } #if !FEATURE_PAL // FEATURE_PAL does not fully enable SQL dependencies ////// Saves data to the ASP.NET cache using the specified key. /// protected override void SaveDataToCacheInternal(string key, object data, CacheDependency dependency) { string sqlCacheDependency = SqlCacheDependency; // Here we only create cache dependencies for SQL Server 2000 and // earlier that use a polling based mechanism. For SQL Server 2005 // and after, the data source itself creates the SqlCacheDependency // and passes it in as a parameter. if (sqlCacheDependency.Length > 0 && !String.Equals(sqlCacheDependency, Sql9CacheDependencyDirective, StringComparison.OrdinalIgnoreCase)) { // Call internal helper method to parse the dependency list CacheDependency sqlDependency = System.Web.Caching.SqlCacheDependency.CreateOutputCacheDependency(sqlCacheDependency); if (dependency != null) { // There was another dependency passed in, aggregate them AggregateCacheDependency aggregateDependency = new AggregateCacheDependency(); aggregateDependency.Add(sqlDependency, dependency); dependency = aggregateDependency; } else { // No other dependencies, just the SQL one dependency = sqlDependency; } } base.SaveDataToCacheInternal(key, data, dependency); } #endif // !FEATURE_PAL } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Collections; using System.ComponentModel; using System.Web.Caching; internal sealed class SqlDataSourceCache : DataSourceCache { internal const string Sql9CacheDependencyDirective = "CommandNotification"; ////// A semi-colon delimited string indicating which databases to use for the dependency in the format "database1:table1;database2:table2". /// public string SqlCacheDependency { get { object o = ViewState["SqlCacheDependency"]; if (o != null) return (string)o; return String.Empty; } set { ViewState["SqlCacheDependency"] = value; } } #if !FEATURE_PAL // FEATURE_PAL does not fully enable SQL dependencies ////// Saves data to the ASP.NET cache using the specified key. /// protected override void SaveDataToCacheInternal(string key, object data, CacheDependency dependency) { string sqlCacheDependency = SqlCacheDependency; // Here we only create cache dependencies for SQL Server 2000 and // earlier that use a polling based mechanism. For SQL Server 2005 // and after, the data source itself creates the SqlCacheDependency // and passes it in as a parameter. if (sqlCacheDependency.Length > 0 && !String.Equals(sqlCacheDependency, Sql9CacheDependencyDirective, StringComparison.OrdinalIgnoreCase)) { // Call internal helper method to parse the dependency list CacheDependency sqlDependency = System.Web.Caching.SqlCacheDependency.CreateOutputCacheDependency(sqlCacheDependency); if (dependency != null) { // There was another dependency passed in, aggregate them AggregateCacheDependency aggregateDependency = new AggregateCacheDependency(); aggregateDependency.Add(sqlDependency, dependency); dependency = aggregateDependency; } else { // No other dependencies, just the SQL one dependency = sqlDependency; } } base.SaveDataToCacheInternal(key, data, dependency); } #endif // !FEATURE_PAL } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ProcessInputEventArgs.cs
- Peer.cs
- XmlSchemaCollection.cs
- RtfControls.cs
- RoleServiceManager.cs
- ProxyWebPartManager.cs
- FixedDSBuilder.cs
- Expander.cs
- PropertyDescriptorGridEntry.cs
- BitmapEffectState.cs
- SystemIPAddressInformation.cs
- WinCategoryAttribute.cs
- Transform.cs
- AmbientProperties.cs
- HttpStreamFormatter.cs
- HttpCacheVary.cs
- MenuStrip.cs
- XmlSchemaCompilationSettings.cs
- InternalConfigEventArgs.cs
- DateTimeValueSerializer.cs
- SqlServices.cs
- mansign.cs
- ClientBuildManagerCallback.cs
- TabControlAutomationPeer.cs
- MediaContext.cs
- DataContractSet.cs
- SqlDependencyUtils.cs
- MexHttpBindingElement.cs
- IUnknownConstantAttribute.cs
- _SslSessionsCache.cs
- basenumberconverter.cs
- QuadraticBezierSegment.cs
- StrongNameSignatureInformation.cs
- ISFClipboardData.cs
- Wildcard.cs
- CursorInteropHelper.cs
- ProtocolsConfigurationEntry.cs
- JournalEntryListConverter.cs
- SimpleLine.cs
- _RequestCacheProtocol.cs
- TransformGroup.cs
- LambdaValue.cs
- FlowNode.cs
- XmlIncludeAttribute.cs
- MappedMetaModel.cs
- Parallel.cs
- WebPartTracker.cs
- CachingHintValidation.cs
- XmlSerializerNamespaces.cs
- MaskedTextBoxDesigner.cs
- HitTestFilterBehavior.cs
- ApplicationFileCodeDomTreeGenerator.cs
- SecurityTokenAuthenticator.cs
- StringValueSerializer.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- ViewValidator.cs
- GradientBrush.cs
- InputLangChangeEvent.cs
- XmlSchemaAny.cs
- WinHttpWebProxyFinder.cs
- dataSvcMapFileLoader.cs
- PointAnimationBase.cs
- HtmlWindow.cs
- selecteditemcollection.cs
- Vector3DKeyFrameCollection.cs
- ChildrenQuery.cs
- FilteredAttributeCollection.cs
- DelegateBodyWriter.cs
- XmlWrappingWriter.cs
- DragStartedEventArgs.cs
- ClientConfigurationSystem.cs
- PagedDataSource.cs
- BinaryMethodMessage.cs
- StateItem.cs
- HostedHttpRequestAsyncResult.cs
- XslNumber.cs
- Operator.cs
- DataGridViewCheckBoxCell.cs
- DataProviderNameConverter.cs
- PingOptions.cs
- BinHexEncoding.cs
- DelegatingTypeDescriptionProvider.cs
- WorkflowInstanceTerminatedRecord.cs
- SvcMapFileSerializer.cs
- FontCollection.cs
- TableItemPattern.cs
- VectorAnimationBase.cs
- HtmlEmptyTagControlBuilder.cs
- OdbcConnectionFactory.cs
- SelectionHighlightInfo.cs
- DllNotFoundException.cs
- LayoutEngine.cs
- EUCJPEncoding.cs
- TextTreeInsertUndoUnit.cs
- ThrowHelper.cs
- CodeTypeMember.cs
- SafeNativeMethods.cs
- UTF8Encoding.cs
- ClientCultureInfo.cs
- ResourceBinder.cs