Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / _CookieModule.cs / 1305376 / _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.GetRemoteResourceUri(), 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 { } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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.GetRemoteResourceUri(), 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 { } } } } // 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
- ChameleonKey.cs
- SoundPlayer.cs
- BindingExpressionBase.cs
- ScrollEventArgs.cs
- CompModSwitches.cs
- SchemaImporter.cs
- ToolboxComponentsCreatingEventArgs.cs
- SendKeys.cs
- ProtocolsInstallComponent.cs
- Assembly.cs
- StateItem.cs
- Image.cs
- WebBrowserNavigatingEventHandler.cs
- AuthenticatedStream.cs
- TableLayoutPanel.cs
- MetadataArtifactLoaderResource.cs
- DataGridViewLinkCell.cs
- CannotUnloadAppDomainException.cs
- WindowsFormsHostPropertyMap.cs
- XmlSchemaAny.cs
- UInt64.cs
- FixedLineResult.cs
- DispatchChannelSink.cs
- ArraySubsetEnumerator.cs
- StopStoryboard.cs
- TreeIterators.cs
- ToolStripSystemRenderer.cs
- Condition.cs
- CustomTypeDescriptor.cs
- SqlConnectionHelper.cs
- Parameter.cs
- XamlVector3DCollectionSerializer.cs
- ProfileServiceManager.cs
- HybridDictionary.cs
- DockPatternIdentifiers.cs
- HttpMethodConstraint.cs
- sqlnorm.cs
- ObjectDisposedException.cs
- ExpressionVisitorHelpers.cs
- dbdatarecord.cs
- Screen.cs
- ResXResourceWriter.cs
- Rectangle.cs
- DispatcherHooks.cs
- AssemblyName.cs
- HttpSysSettings.cs
- ConnectionOrientedTransportChannelFactory.cs
- TrackBarRenderer.cs
- OciEnlistContext.cs
- RequestBringIntoViewEventArgs.cs
- ExplicitDiscriminatorMap.cs
- CopyNamespacesAction.cs
- ResourceExpressionBuilder.cs
- PrefixHandle.cs
- TransactionChannelFactory.cs
- WebPartTransformerCollection.cs
- BaseTemplateBuildProvider.cs
- ObjectSecurityT.cs
- CommandEventArgs.cs
- TdsParserSafeHandles.cs
- oledbmetadatacolumnnames.cs
- ObjectQueryExecutionPlan.cs
- DataRow.cs
- MultiTouchSystemGestureLogic.cs
- FieldBuilder.cs
- KnownColorTable.cs
- ProgressiveCrcCalculatingStream.cs
- LogicalExpr.cs
- ResourceContainer.cs
- TemplateBuilder.cs
- Compiler.cs
- HttpProcessUtility.cs
- SelectionManager.cs
- SimpleTextLine.cs
- SQLInt64Storage.cs
- HtmlHead.cs
- StreamAsIStream.cs
- DataFormats.cs
- XmlDocumentSerializer.cs
- Publisher.cs
- DockingAttribute.cs
- altserialization.cs
- DbParameterCollectionHelper.cs
- MarshalDirectiveException.cs
- OleDbCommand.cs
- XmlCharType.cs
- StylusTip.cs
- TextServicesProperty.cs
- IntPtr.cs
- BitmapEffectInputConnector.cs
- DbSourceCommand.cs
- SmtpFailedRecipientException.cs
- WindowsIdentity.cs
- DirtyTextRange.cs
- DeclarativeCatalogPart.cs
- InvalidOperationException.cs
- MatchingStyle.cs
- SecuritySessionClientSettings.cs
- ServiceDesigner.cs
- COM2ComponentEditor.cs