Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Net / System / Net / _CookieModule.cs / 1 / _CookieModule.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net { internal static class CookieModule { // fields // constructors // properties // methods internal static void OnSendingHeaders(HttpWebRequest httpWebRequest) { GlobalLog.Print("CookieModule::OnSendingHeaders()"); try { if (httpWebRequest.CookieContainer == null) { return; } // // remove all current cookies. This could be a redirect // httpWebRequest.Headers.RemoveInternal(HttpKnownHeaderNames.Cookie); // // add in the new headers from the cookie container for this request // string optCookie2; string cookieString = httpWebRequest.CookieContainer.GetCookieHeader( httpWebRequest.Address, out optCookie2); if (cookieString.Length > 0) { GlobalLog.Print("CookieModule::OnSendingHeaders() setting Cookie header to:[" + cookieString + "]"); httpWebRequest.Headers[HttpKnownHeaderNames.Cookie] = cookieString; //< } } catch { } } internal static void OnReceivedHeaders(HttpWebRequest httpWebRequest) { GlobalLog.Print("CookieModule.OnReceivedHeaders()"); // // if the app doesn't want us to handle cookies then there's nothing // to do. Note that we're leaving open the possibility that these // settings could be changed between the request being made and the // response received // try { if (httpWebRequest.CookieContainer == null) { return; } // // add any received cookies for this response to the container // HttpWebResponse response = httpWebRequest._HttpResponse as HttpWebResponse; if (response == null) { return; } CookieCollection cookies = null; try { string cookieString = response.Headers.SetCookie; GlobalLog.Print("CookieModule::OnSendingHeaders() received Set-Cookie:[" + cookieString + "]"); if ((cookieString != null) && (cookieString.Length > 0)) { cookies = httpWebRequest.CookieContainer.CookieCutter( response.ResponseUri, HttpKnownHeaderNames.SetCookie, cookieString, false); } } catch { } try { string cookieString = response.Headers.SetCookie2; GlobalLog.Print("CookieModule::OnSendingHeaders() received Set-Cookie2:[" + cookieString + "]"); if ((cookieString != null) && (cookieString.Length > 0)) { CookieCollection cookies2 = httpWebRequest.CookieContainer.CookieCutter( response.ResponseUri, HttpKnownHeaderNames.SetCookie2, cookieString, false); if (cookies != null && cookies.Count != 0) { cookies.Add(cookies2); } else { cookies = cookies2; } } } catch { } if (cookies != null) { response.Cookies = cookies; } } catch { } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EncodingTable.cs
- ValueQuery.cs
- TearOffProxy.cs
- ProcessInputEventArgs.cs
- CommandField.cs
- MatrixCamera.cs
- UIElementHelper.cs
- PointCollection.cs
- AdornerPresentationContext.cs
- IndentedTextWriter.cs
- Cursor.cs
- ProfessionalColorTable.cs
- XmlStreamStore.cs
- NullableFloatMinMaxAggregationOperator.cs
- SqlTriggerAttribute.cs
- Track.cs
- CodeDomSerializationProvider.cs
- SpeechSeg.cs
- CurrencyManager.cs
- listitem.cs
- Tablet.cs
- CommandSet.cs
- Common.cs
- Int64AnimationBase.cs
- Rect3D.cs
- MissingMethodException.cs
- EntityReference.cs
- DummyDataSource.cs
- CompilationLock.cs
- SchemaTableOptionalColumn.cs
- SerialPinChanges.cs
- RenamedEventArgs.cs
- ExpanderAutomationPeer.cs
- TypeElementCollection.cs
- SecurityException.cs
- CodeDOMProvider.cs
- DataSpaceManager.cs
- MetafileHeaderWmf.cs
- GenericTypeParameterBuilder.cs
- _NegoState.cs
- FlowDocumentReaderAutomationPeer.cs
- MeshGeometry3D.cs
- Int16.cs
- Point3DAnimationUsingKeyFrames.cs
- NullableBoolConverter.cs
- SessionPageStateSection.cs
- Label.cs
- DocumentOrderComparer.cs
- GlyphInfoList.cs
- ProcessHostMapPath.cs
- MultiView.cs
- DbFunctionCommandTree.cs
- CssClassPropertyAttribute.cs
- PrimitiveSchema.cs
- SerializerWriterEventHandlers.cs
- DBDataPermissionAttribute.cs
- DataControlPagerLinkButton.cs
- Rect3DValueSerializer.cs
- IntegerValidator.cs
- Site.cs
- WindowsMenu.cs
- SuppressIldasmAttribute.cs
- RijndaelManaged.cs
- UIElementHelper.cs
- DBNull.cs
- MultiDataTrigger.cs
- SqlAliasesReferenced.cs
- ImageConverter.cs
- XpsPackagingPolicy.cs
- RepeaterItem.cs
- RegexTree.cs
- NativeActivityTransactionContext.cs
- DBCSCodePageEncoding.cs
- XslCompiledTransform.cs
- TagNameToTypeMapper.cs
- XmlUnspecifiedAttribute.cs
- ValidationHelper.cs
- Function.cs
- MSAANativeProvider.cs
- odbcmetadatacolumnnames.cs
- AdvancedBindingEditor.cs
- DocumentViewerBase.cs
- DataGridColumnEventArgs.cs
- EpmCustomContentDeSerializer.cs
- OrderedDictionaryStateHelper.cs
- FieldNameLookup.cs
- AuthenticationServiceManager.cs
- ContractTypeNameCollection.cs
- SqlParameterizer.cs
- NotSupportedException.cs
- DataBoundControl.cs
- DashStyle.cs
- xsdvalidator.cs
- SystemIcmpV4Statistics.cs
- MaterialCollection.cs
- XmlDocument.cs
- PreProcessInputEventArgs.cs
- PointF.cs
- DbProviderManifest.cs
- EnumerableValidator.cs