Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Extensions / Util / HeaderUtility.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataGridViewHitTestInfo.cs
- XMLUtil.cs
- HtmlElementEventArgs.cs
- MulticastDelegate.cs
- NativeMethods.cs
- XmlNamespaceDeclarationsAttribute.cs
- PtsHelper.cs
- CodeChecksumPragma.cs
- DynamicControlParameter.cs
- WsdlBuildProvider.cs
- MobileTextWriter.cs
- TextMessageEncodingElement.cs
- KeyEventArgs.cs
- WS2007FederationHttpBindingElement.cs
- SiteMapNodeItem.cs
- SqlRecordBuffer.cs
- DBParameter.cs
- DataGridRelationshipRow.cs
- DesigntimeLicenseContext.cs
- TypeElement.cs
- DocumentSequenceHighlightLayer.cs
- WindowsStartMenu.cs
- XmlImplementation.cs
- Int32CAMarshaler.cs
- SafeHandles.cs
- XmlObjectSerializerContext.cs
- MouseEventArgs.cs
- GrammarBuilderDictation.cs
- AvtEvent.cs
- CorruptStoreException.cs
- ButtonFieldBase.cs
- FaultException.cs
- UnauthorizedWebPart.cs
- TextTreeDeleteContentUndoUnit.cs
- WS2007FederationHttpBindingElement.cs
- DataGridViewComboBoxColumn.cs
- ResourceReader.cs
- ConnectivityStatus.cs
- BinaryNode.cs
- ImageListUtils.cs
- DesignerLoader.cs
- TreeNodeCollection.cs
- DocumentScope.cs
- LexicalChunk.cs
- TimeZoneNotFoundException.cs
- AccessViolationException.cs
- HasCopySemanticsAttribute.cs
- ListControl.cs
- GenericAuthenticationEventArgs.cs
- XmlnsDefinitionAttribute.cs
- XmlElementList.cs
- ElementHostPropertyMap.cs
- ScriptRegistrationManager.cs
- TypeConverterValueSerializer.cs
- ScriptControl.cs
- PasswordDeriveBytes.cs
- QilInvoke.cs
- KerberosSecurityTokenAuthenticator.cs
- TextUtf8RawTextWriter.cs
- GeneralTransformGroup.cs
- UrlPath.cs
- WebConfigurationManager.cs
- PersistenceProviderDirectory.cs
- XmlAttributeAttribute.cs
- AsyncCompletedEventArgs.cs
- UnaryQueryOperator.cs
- TdsValueSetter.cs
- _ShellExpression.cs
- SR.cs
- connectionpool.cs
- CalendarDesigner.cs
- StyleCollection.cs
- EndpointDispatcherTable.cs
- XslTransformFileEditor.cs
- AnnotationMap.cs
- BrowserCapabilitiesFactoryBase.cs
- TokenBasedSet.cs
- DmlSqlGenerator.cs
- NonSerializedAttribute.cs
- TextPenaltyModule.cs
- ImageCodecInfoPrivate.cs
- RawStylusInput.cs
- Root.cs
- SynchronizedRandom.cs
- SignatureTargetIdManager.cs
- Path.cs
- StringCollection.cs
- DesignerObjectListAdapter.cs
- XsdDateTime.cs
- WebSysDefaultValueAttribute.cs
- SqlCacheDependencySection.cs
- CultureInfo.cs
- SamlAssertionKeyIdentifierClause.cs
- DesignBindingPropertyDescriptor.cs
- RemoteCryptoTokenProvider.cs
- DetailsViewRowCollection.cs
- NavigationPropertyEmitter.cs
- IdentityValidationException.cs
- PerfCounterSection.cs
- PrefixQName.cs