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 / 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
- ZoneLinkButton.cs
- FullTrustAssemblyCollection.cs
- PersonalizationState.cs
- DefaultEventAttribute.cs
- RepeatInfo.cs
- DataGridCellInfo.cs
- webclient.cs
- LayoutManager.cs
- ComplexObject.cs
- DtdParser.cs
- SelectorAutomationPeer.cs
- HttpCachePolicyBase.cs
- DataGridRelationshipRow.cs
- XmlMembersMapping.cs
- ImageClickEventArgs.cs
- ArglessEventHandlerProxy.cs
- configsystem.cs
- XmlHelper.cs
- XmlC14NWriter.cs
- HtmlContainerControl.cs
- ConnectionPointCookie.cs
- XmlHierarchicalEnumerable.cs
- DbModificationCommandTree.cs
- CellRelation.cs
- MLangCodePageEncoding.cs
- WorkflowItemsPresenter.cs
- Shape.cs
- DetailsViewRow.cs
- DataSourceHelper.cs
- MonthCalendarDesigner.cs
- KoreanCalendar.cs
- DomainUpDown.cs
- WmiInstallComponent.cs
- WSFederationHttpBindingCollectionElement.cs
- SymLanguageVendor.cs
- StringResourceManager.cs
- LoginDesignerUtil.cs
- SpanIndex.cs
- TypefaceMap.cs
- AutoScrollExpandMessageFilter.cs
- RsaSecurityTokenParameters.cs
- ResourceDisplayNameAttribute.cs
- RowSpanVector.cs
- IdleTimeoutMonitor.cs
- SymbolPair.cs
- VirtualizedItemProviderWrapper.cs
- JoinSymbol.cs
- TextEndOfLine.cs
- BaseDataBoundControl.cs
- Parameter.cs
- TCPClient.cs
- PtsPage.cs
- HtmlHistory.cs
- PiiTraceSource.cs
- SoapTypeAttribute.cs
- ResizingMessageFilter.cs
- NotSupportedException.cs
- Inline.cs
- ClientBuildManagerCallback.cs
- LocalizableAttribute.cs
- HttpCookieCollection.cs
- PromptBuilder.cs
- TableSectionStyle.cs
- FlowNode.cs
- TargetParameterCountException.cs
- x509utils.cs
- FtpWebResponse.cs
- AtomServiceDocumentSerializer.cs
- DbFunctionCommandTree.cs
- MetafileHeaderEmf.cs
- CreateUserWizard.cs
- CSharpCodeProvider.cs
- TypeContext.cs
- DataListCommandEventArgs.cs
- VScrollBar.cs
- TimelineCollection.cs
- ClientConvert.cs
- PeerNearMe.cs
- DbConnectionPoolCounters.cs
- BindingFormattingDialog.cs
- DbProviderFactories.cs
- BaseAddressPrefixFilterElement.cs
- WebHttpDispatchOperationSelector.cs
- Vector3DConverter.cs
- MenuItemCollection.cs
- CharacterString.cs
- ParameterCollectionEditorForm.cs
- WebServiceHost.cs
- TransactedReceiveData.cs
- MappingModelBuildProvider.cs
- StopStoryboard.cs
- OptimizedTemplateContentHelper.cs
- WebPartEventArgs.cs
- AddInActivator.cs
- CollectionBase.cs
- CodeEntryPointMethod.cs
- Interop.cs
- complextypematerializer.cs
- EncodingTable.cs
- ContentPlaceHolder.cs