Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- CultureTable.cs
- XPathScanner.cs
- TcpClientSocketManager.cs
- FormatterServices.cs
- DoubleStorage.cs
- VisualTarget.cs
- InternalPermissions.cs
- DataServices.cs
- HttpBrowserCapabilitiesWrapper.cs
- ParallelTimeline.cs
- PinnedBufferMemoryStream.cs
- SecurityCriticalDataForSet.cs
- SchemaMerger.cs
- PixelShader.cs
- diagnosticsswitches.cs
- SqlCharStream.cs
- SelectionRange.cs
- ProtocolsConfigurationEntry.cs
- SpellCheck.cs
- DataObjectAttribute.cs
- WindowsUserNameSecurityTokenAuthenticator.cs
- ClientSettings.cs
- SqlDataSourceSelectingEventArgs.cs
- EntityViewGenerationConstants.cs
- ComponentCollection.cs
- HttpProtocolReflector.cs
- mactripleDES.cs
- ResourceManagerWrapper.cs
- ImagingCache.cs
- DataDocumentXPathNavigator.cs
- SwitchElementsCollection.cs
- DbMetaDataColumnNames.cs
- SecurityTokenTypes.cs
- Row.cs
- CodeExpressionCollection.cs
- LayoutSettings.cs
- ClientWindowsAuthenticationMembershipProvider.cs
- XamlReader.cs
- SecurityDocument.cs
- PropertyEntry.cs
- EventWaitHandleSecurity.cs
- IPPacketInformation.cs
- UseManagedPresentationElement.cs
- SessionEndingEventArgs.cs
- EnumUnknown.cs
- MemberProjectedSlot.cs
- OpCodes.cs
- MenuBindingsEditorForm.cs
- StrokeSerializer.cs
- CustomErrorCollection.cs
- ScriptingScriptResourceHandlerSection.cs
- SafeArrayRankMismatchException.cs
- InputBindingCollection.cs
- RowBinding.cs
- BehaviorEditorPart.cs
- ImageDrawing.cs
- MembershipPasswordException.cs
- IisTraceListener.cs
- ActivationArguments.cs
- Int64AnimationBase.cs
- LoginDesigner.cs
- StringValueSerializer.cs
- XmlElementAttribute.cs
- ScrollData.cs
- ProviderCollection.cs
- GetPageCompletedEventArgs.cs
- PropertyMapper.cs
- SuspendDesigner.cs
- OracleException.cs
- Registry.cs
- MethodBuilderInstantiation.cs
- DeviceFilterDictionary.cs
- PopupRootAutomationPeer.cs
- HostProtectionPermission.cs
- Attributes.cs
- UInt32.cs
- NamespaceList.cs
- AnimationClockResource.cs
- DataSourceCacheDurationConverter.cs
- SoapElementAttribute.cs
- EarlyBoundInfo.cs
- InputScopeManager.cs
- StrongNameIdentityPermission.cs
- SqlProfileProvider.cs
- SHA1.cs
- UnsafeNativeMethods.cs
- ServerIdentity.cs
- PropertyEmitter.cs
- SchemaType.cs
- MailAddressCollection.cs
- DataBindingExpressionBuilder.cs
- Rotation3DKeyFrameCollection.cs
- XmlIgnoreAttribute.cs
- InstancePersistenceCommand.cs
- PopupRootAutomationPeer.cs
- CategoryGridEntry.cs
- WriterOutput.cs
- TextComposition.cs
- HTTPNotFoundHandler.cs
- DBCommand.cs