Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Abstractions / HttpApplicationStateBase.cs / 1305376 / HttpApplicationStateBase.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web { using System; using System.Collections; using System.Collections.Specialized; using System.Diagnostics.CodeAnalysis; using System.Runtime.CompilerServices; [SuppressMessage("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix", Justification = "This type is an abstraction for HttpApplicationState.")] [SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable", Justification = "The abstraction is not meant to be serialized.")] [TypeForwardedFrom("System.Web.Abstractions, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")] public abstract class HttpApplicationStateBase : NameObjectCollectionBase, ICollection { [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays", Justification = "Matches HttpApplicationState class")] public virtual string[] AllKeys { get { throw new NotImplementedException(); } } public virtual HttpApplicationStateBase Contents { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public override int Count { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public virtual bool IsSynchronized { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public virtual object SyncRoot { get { throw new NotImplementedException(); } } public virtual object this[int index] { get { throw new NotImplementedException(); } } public virtual object this[string name] { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public virtual HttpStaticObjectsCollectionBase StaticObjects { get { throw new NotImplementedException(); } } public virtual void Add(string name, object value) { throw new NotImplementedException(); } public virtual void Clear() { throw new NotImplementedException(); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public virtual void CopyTo(Array array, int index) { throw new NotImplementedException(); } [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Matches HttpApplicationState class")] public virtual object Get(int index) { throw new NotImplementedException(); } [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Matches HttpApplicationState class")] public virtual object Get(string name) { throw new NotImplementedException(); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public override IEnumerator GetEnumerator() { throw new NotImplementedException(); } public virtual string GetKey(int index) { throw new NotImplementedException(); } public virtual void Lock() { throw new NotImplementedException(); } public virtual void Remove(string name) { throw new NotImplementedException(); } public virtual void RemoveAll() { throw new NotImplementedException(); } public virtual void RemoveAt(int index) { throw new NotImplementedException(); } [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Set", Justification = "Matches HttpApplicationState class")] public virtual void Set(string name, object value) { throw new NotImplementedException(); } [SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "Un", Justification = "Matches HttpApplicationState class")] [SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", MessageId = "UnLock", Justification = "Matched HttpApplicationState class")] [SuppressMessage("Microsoft.Naming", "CA1706:ShortAcronymsShouldBeUppercase", MessageId="UnLock", Justification = "Matched HttpApplicationState class")] public virtual void UnLock() { throw new NotImplementedException(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web { using System; using System.Collections; using System.Collections.Specialized; using System.Diagnostics.CodeAnalysis; using System.Runtime.CompilerServices; [SuppressMessage("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix", Justification = "This type is an abstraction for HttpApplicationState.")] [SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable", Justification = "The abstraction is not meant to be serialized.")] [TypeForwardedFrom("System.Web.Abstractions, Version=3.5.0.0, Culture=Neutral, PublicKeyToken=31bf3856ad364e35")] public abstract class HttpApplicationStateBase : NameObjectCollectionBase, ICollection { [SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays", Justification = "Matches HttpApplicationState class")] public virtual string[] AllKeys { get { throw new NotImplementedException(); } } public virtual HttpApplicationStateBase Contents { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public override int Count { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public virtual bool IsSynchronized { get { throw new NotImplementedException(); } } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public virtual object SyncRoot { get { throw new NotImplementedException(); } } public virtual object this[int index] { get { throw new NotImplementedException(); } } public virtual object this[string name] { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } public virtual HttpStaticObjectsCollectionBase StaticObjects { get { throw new NotImplementedException(); } } public virtual void Add(string name, object value) { throw new NotImplementedException(); } public virtual void Clear() { throw new NotImplementedException(); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public virtual void CopyTo(Array array, int index) { throw new NotImplementedException(); } [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Matches HttpApplicationState class")] public virtual object Get(int index) { throw new NotImplementedException(); } [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Matches HttpApplicationState class")] public virtual object Get(string name) { throw new NotImplementedException(); } [SuppressMessage("Microsoft.Security", "CA2123:OverrideLinkDemandsShouldBeIdenticalToBase")] public override IEnumerator GetEnumerator() { throw new NotImplementedException(); } public virtual string GetKey(int index) { throw new NotImplementedException(); } public virtual void Lock() { throw new NotImplementedException(); } public virtual void Remove(string name) { throw new NotImplementedException(); } public virtual void RemoveAll() { throw new NotImplementedException(); } public virtual void RemoveAt(int index) { throw new NotImplementedException(); } [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Set", Justification = "Matches HttpApplicationState class")] public virtual void Set(string name, object value) { throw new NotImplementedException(); } [SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "Un", Justification = "Matches HttpApplicationState class")] [SuppressMessage("Microsoft.Naming", "CA1702:CompoundWordsShouldBeCasedCorrectly", MessageId = "UnLock", Justification = "Matched HttpApplicationState class")] [SuppressMessage("Microsoft.Naming", "CA1706:ShortAcronymsShouldBeUppercase", MessageId="UnLock", Justification = "Matched HttpApplicationState class")] public virtual void UnLock() { throw new NotImplementedException(); } } } // 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
- AuthenticateEventArgs.cs
- Rijndael.cs
- Socket.cs
- SemanticAnalyzer.cs
- MembershipPasswordException.cs
- CodeCatchClause.cs
- DispatchChannelSink.cs
- PrePrepareMethodAttribute.cs
- TextRenderer.cs
- TransformerInfo.cs
- ResolvedKeyFrameEntry.cs
- BufferModesCollection.cs
- QilExpression.cs
- DataView.cs
- XDeferredAxisSource.cs
- ScaleTransform3D.cs
- ExpressionDumper.cs
- recordstatefactory.cs
- RequestQueue.cs
- Camera.cs
- Size.cs
- FlowNode.cs
- RoutedEventHandlerInfo.cs
- VerticalAlignConverter.cs
- ProtocolInformationWriter.cs
- RealizedColumnsBlock.cs
- DecimalKeyFrameCollection.cs
- Typography.cs
- FormClosingEvent.cs
- SqlConnection.cs
- SkipStoryboardToFill.cs
- OrderedDictionaryStateHelper.cs
- SqlServer2KCompatibilityCheck.cs
- _NestedSingleAsyncResult.cs
- MainMenu.cs
- HttpPostedFile.cs
- IUnknownConstantAttribute.cs
- RSAOAEPKeyExchangeFormatter.cs
- CopyNodeSetAction.cs
- SqlBulkCopyColumnMappingCollection.cs
- TextTreeObjectNode.cs
- basemetadatamappingvisitor.cs
- BlockingCollection.cs
- Pool.cs
- UnsafeNativeMethodsPenimc.cs
- PeerToPeerException.cs
- VariableBinder.cs
- DatagridviewDisplayedBandsData.cs
- RequestStatusBarUpdateEventArgs.cs
- SmtpFailedRecipientsException.cs
- RangeBase.cs
- DaylightTime.cs
- HttpDebugHandler.cs
- StringUtil.cs
- uribuilder.cs
- QilInvokeEarlyBound.cs
- Int64Storage.cs
- ScrollBarAutomationPeer.cs
- SymbolEqualComparer.cs
- WindowsUpDown.cs
- StreamGeometry.cs
- OverlappedContext.cs
- StreamMarshaler.cs
- TypeBuilderInstantiation.cs
- ViewCellSlot.cs
- HtmlToClrEventProxy.cs
- MeasureItemEvent.cs
- DetailsViewUpdatedEventArgs.cs
- PerformanceCountersElement.cs
- BamlLocalizabilityResolver.cs
- InheritedPropertyDescriptor.cs
- IntPtr.cs
- FigureParagraph.cs
- PathSegmentCollection.cs
- GacUtil.cs
- FilterQuery.cs
- AutomationAttributeInfo.cs
- OSFeature.cs
- TextRenderer.cs
- XmlReflectionMember.cs
- BufferedReadStream.cs
- VisualTreeUtils.cs
- SystemParameters.cs
- PlanCompilerUtil.cs
- StateMachine.cs
- SoapEnumAttribute.cs
- CellCreator.cs
- MsmqDiagnostics.cs
- ReaderOutput.cs
- ProjectionAnalyzer.cs
- ClientConvert.cs
- DataPointer.cs
- DBCSCodePageEncoding.cs
- figurelengthconverter.cs
- TemplateContainer.cs
- TextSpan.cs
- StorageEntityTypeMapping.cs
- WebBrowserNavigatedEventHandler.cs
- OrderedDictionary.cs
- DataReceivedEventArgs.cs