Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / Adapters / XhtmlAdapters / XhtmlCssHandler.cs / 1305376 / XhtmlCssHandler.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Security.Permissions; using System.Web; using System.Web.SessionState; using System.Web.UI.MobileControls.Adapters; #if COMPILING_FOR_SHIPPED_SOURCE namespace System.Web.UI.MobileControls.ShippedAdapterSource.XhtmlAdapters #else namespace System.Web.UI.MobileControls.Adapters.XhtmlAdapters #endif { ///[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] public class XhtmlCssHandler : IHttpHandler, IRequiresSessionState { /// public void ProcessRequest (HttpContext context) { String cssQueryStringValue = (String) context.Request.QueryString[XhtmlConstants.CssQueryStringName]; String response; if (cssQueryStringValue != null) { // Recall that Page.Cache is application level if (cssQueryStringValue.StartsWith(XhtmlConstants.SessionKeyPrefix, StringComparison.Ordinal)) { response = (String) context.Session[cssQueryStringValue]; } else { response = (String) context.Cache[cssQueryStringValue]; } context.Response.ContentType="text/css"; } else { throw new HttpException (404, SR.GetString( SR.XhtmlCssHandler_IdNotPresent)); } if (response == null) { throw new HttpException (404, SR.GetString( SR.XhtmlCssHandler_StylesheetNotFound)); } context.Response.Write (response); } /// public bool IsReusable { get { return true; } } } } // 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
- RSAPKCS1SignatureFormatter.cs
- DataRowComparer.cs
- UrlMappingCollection.cs
- SamlDelegatingWriter.cs
- RC2CryptoServiceProvider.cs
- ToolStripDropTargetManager.cs
- TextBox.cs
- QueryBranchOp.cs
- PluralizationService.cs
- DispatchChannelSink.cs
- MediaSystem.cs
- StreamWithDictionary.cs
- RegexCaptureCollection.cs
- EntitySqlQueryCacheEntry.cs
- CustomSignedXml.cs
- FileLogRecordHeader.cs
- StateItem.cs
- XmlSchemaImporter.cs
- DES.cs
- InheritanceUI.cs
- TrackPointCollection.cs
- StringUtil.cs
- ControlPaint.cs
- JournalEntry.cs
- IProducerConsumerCollection.cs
- DnsEndPoint.cs
- XPathArrayIterator.cs
- ExpressionBuilderCollection.cs
- MonthChangedEventArgs.cs
- WindowsFont.cs
- FontNameConverter.cs
- ConfigurationElement.cs
- ConstructorExpr.cs
- LogoValidationException.cs
- DbDataRecord.cs
- PageContentCollection.cs
- XmlSerializationGeneratedCode.cs
- SizeKeyFrameCollection.cs
- StringOutput.cs
- TextBounds.cs
- SafeWaitHandle.cs
- CustomErrorsSection.cs
- PropertyToken.cs
- _ConnectionGroup.cs
- PersonalizablePropertyEntry.cs
- DoubleIndependentAnimationStorage.cs
- RNGCryptoServiceProvider.cs
- SqlGatherConsumedAliases.cs
- SerializationHelper.cs
- Module.cs
- SystemIcons.cs
- SystemEvents.cs
- MetadataArtifactLoader.cs
- MatrixTransform3D.cs
- ConfigXmlElement.cs
- DesignerGenericWebPart.cs
- _RequestCacheProtocol.cs
- DataQuery.cs
- TreeNodeMouseHoverEvent.cs
- SourceElementsCollection.cs
- DefaultBinder.cs
- Cursor.cs
- BaseDataList.cs
- Column.cs
- ContextInformation.cs
- ClaimSet.cs
- FullTextBreakpoint.cs
- EventHandlerService.cs
- Internal.cs
- Sentence.cs
- RIPEMD160.cs
- DataControlField.cs
- SqlCrossApplyToCrossJoin.cs
- ScrollItemProviderWrapper.cs
- ArithmeticLiteral.cs
- SQLInt64.cs
- ImageAnimator.cs
- XPathNode.cs
- CodeEntryPointMethod.cs
- SID.cs
- AccessDataSource.cs
- MenuEventArgs.cs
- MediaPlayerState.cs
- CapabilitiesUse.cs
- DeviceContext.cs
- ApplicationServiceHelper.cs
- SiteMapPath.cs
- webproxy.cs
- Exceptions.cs
- TextDecorations.cs
- oledbconnectionstring.cs
- AliasedSlot.cs
- RepeatButtonAutomationPeer.cs
- UserControlAutomationPeer.cs
- IsolatedStorageFilePermission.cs
- TypeBuilder.cs
- ParseChildrenAsPropertiesAttribute.cs
- SynchronizationLockException.cs
- EntityTypeEmitter.cs
- RequiredAttributeAttribute.cs