Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / xsp / System / Web / Extensions / Util / HeaderUtility.cs / 1 / HeaderUtility.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Util { using System; internal static class HeaderUtility { public static bool IsEncodingInAcceptList(string acceptEncodingHeader, string expectedEncoding) { if (String.IsNullOrEmpty(acceptEncodingHeader)) { return false; } foreach (string encoding in acceptEncodingHeader.Split(',')) { string e = encoding.Trim(); // This code will typically handle all existing browsers, which // use "encoding1, encoding2" for this header. // IE, Firefox and Safari are sending "gzip, deflate" // Opera is sending "deflate, gzip, x-gzip, identity, *;q=0" // There is a currently hypothetical case where a browser would use the quantified syntax // on specific encodings ("encoding1;q=0.8, encoding2 ;q=0.2") which we don't handle here. // For those situations, the browser would get the uncompressed version. // See RFC 2068 for details. if (String.Equals(e, expectedEncoding, StringComparison.Ordinal)) { return true; } } // no match found return false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Util { using System; internal static class HeaderUtility { public static bool IsEncodingInAcceptList(string acceptEncodingHeader, string expectedEncoding) { if (String.IsNullOrEmpty(acceptEncodingHeader)) { return false; } foreach (string encoding in acceptEncodingHeader.Split(',')) { string e = encoding.Trim(); // This code will typically handle all existing browsers, which // use "encoding1, encoding2" for this header. // IE, Firefox and Safari are sending "gzip, deflate" // Opera is sending "deflate, gzip, x-gzip, identity, *;q=0" // There is a currently hypothetical case where a browser would use the quantified syntax // on specific encodings ("encoding1;q=0.8, encoding2 ;q=0.2") which we don't handle here. // For those situations, the browser would get the uncompressed version. // See RFC 2068 for details. if (String.Equals(e, expectedEncoding, StringComparison.Ordinal)) { return true; } } // no match found return false; } } } // 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
- JsonReader.cs
- XPathEmptyIterator.cs
- TemplateControl.cs
- _StreamFramer.cs
- TextParagraphView.cs
- TypeConverter.cs
- ContextQuery.cs
- EdmToObjectNamespaceMap.cs
- SecurityContextKeyIdentifierClause.cs
- FixedSOMTableCell.cs
- CompoundFileDeflateTransform.cs
- DropShadowBitmapEffect.cs
- HtmlTableCell.cs
- SqlUnionizer.cs
- xml.cs
- NetNamedPipeBinding.cs
- ExpressionTable.cs
- Int32.cs
- CodeArrayIndexerExpression.cs
- DelegateSerializationHolder.cs
- TdsParserSessionPool.cs
- Clipboard.cs
- ArgumentNullException.cs
- PersonalizableTypeEntry.cs
- SafeRightsManagementQueryHandle.cs
- BamlTreeMap.cs
- FtpWebRequest.cs
- EncryptRequest.cs
- SerializationHelper.cs
- GacUtil.cs
- OdbcParameterCollection.cs
- PocoEntityKeyStrategy.cs
- PageTheme.cs
- BaseCodePageEncoding.cs
- GestureRecognizer.cs
- ValidationError.cs
- BoundingRectTracker.cs
- _SpnDictionary.cs
- ResourceDisplayNameAttribute.cs
- HandlerBase.cs
- StringDictionary.cs
- StylusTip.cs
- BeginEvent.cs
- ChildrenQuery.cs
- PointF.cs
- SlotInfo.cs
- ParameterSubsegment.cs
- FrameworkPropertyMetadata.cs
- TextEditorParagraphs.cs
- HttpWebResponse.cs
- MultilineStringEditor.cs
- ChildDocumentBlock.cs
- ToolStripComboBox.cs
- HtmlPhoneCallAdapter.cs
- COAUTHINFO.cs
- Query.cs
- DataGridPageChangedEventArgs.cs
- Style.cs
- RecipientInfo.cs
- ListMarkerSourceInfo.cs
- SpotLight.cs
- ToolStripPanelRow.cs
- CustomErrorsSection.cs
- CodeIterationStatement.cs
- WebPartCatalogAddVerb.cs
- MapPathBasedVirtualPathProvider.cs
- UpWmlPageAdapter.cs
- InstanceNotFoundException.cs
- LicenseManager.cs
- FacetDescription.cs
- RegisteredExpandoAttribute.cs
- PerformanceCounter.cs
- ListItemConverter.cs
- SystemResourceHost.cs
- HttpModuleCollection.cs
- SafePEFileHandle.cs
- ListViewTableRow.cs
- PageTextBox.cs
- OperatingSystem.cs
- FontFaceLayoutInfo.cs
- LiteralControl.cs
- ContentTextAutomationPeer.cs
- Documentation.cs
- EventDriven.cs
- Slider.cs
- BaseHashHelper.cs
- KeyedCollection.cs
- PartitionResolver.cs
- EntityContainer.cs
- DragStartedEventArgs.cs
- OutOfProcStateClientManager.cs
- ExclusiveCanonicalizationTransform.cs
- HtmlInputFile.cs
- DataObjectFieldAttribute.cs
- TypeToken.cs
- AnimationException.cs
- XDeferredAxisSource.cs
- FakeModelItemImpl.cs
- ContainerUtilities.cs
- DetailsViewDesigner.cs