Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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 { } } } } // 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.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 { } } } } // 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
- ScriptResourceInfo.cs
- ExecutionContext.cs
- EditorZoneBase.cs
- ZipIOLocalFileDataDescriptor.cs
- CanonicalFormWriter.cs
- DataObjectMethodAttribute.cs
- DataGridViewTopRowAccessibleObject.cs
- XmlWellformedWriter.cs
- GeometryModel3D.cs
- Matrix.cs
- ReachObjectContext.cs
- UnknownWrapper.cs
- dtdvalidator.cs
- DataGridViewColumnCollection.cs
- List.cs
- IOThreadScheduler.cs
- TreeNodeBindingCollection.cs
- smtpconnection.cs
- FormViewPagerRow.cs
- PeerApplication.cs
- HtmlTableCell.cs
- DetailsViewInsertEventArgs.cs
- WorkflowDataContext.cs
- FileEnumerator.cs
- NetworkStream.cs
- BamlVersionHeader.cs
- ProcessHostServerConfig.cs
- HtmlElementEventArgs.cs
- RepeatButtonAutomationPeer.cs
- DesignerUtility.cs
- MultilineStringConverter.cs
- Debug.cs
- UrlPath.cs
- ByteAnimationUsingKeyFrames.cs
- Parallel.cs
- SplashScreenNativeMethods.cs
- TransformCollection.cs
- URI.cs
- ExtensionWindow.cs
- SourceLineInfo.cs
- StringValueSerializer.cs
- CodeParameterDeclarationExpressionCollection.cs
- SynchronizedInputHelper.cs
- SelectionWordBreaker.cs
- SettingsProviderCollection.cs
- InputLanguageManager.cs
- DataGridViewLayoutData.cs
- Set.cs
- GradientBrush.cs
- Crypto.cs
- TagElement.cs
- DrawingImage.cs
- EntityConnectionStringBuilder.cs
- XslException.cs
- TraceSection.cs
- WebControlsSection.cs
- ClientFormsIdentity.cs
- Variable.cs
- SecurityTokenTypes.cs
- ToolStripGrip.cs
- XmlValidatingReaderImpl.cs
- HtmlToClrEventProxy.cs
- BuildResult.cs
- BitHelper.cs
- Margins.cs
- Int32AnimationBase.cs
- RenderDataDrawingContext.cs
- EntitySqlQueryState.cs
- TemplateKeyConverter.cs
- AuthenticationModulesSection.cs
- DoubleAnimationUsingPath.cs
- XmlHierarchicalEnumerable.cs
- TemplateBamlTreeBuilder.cs
- SequentialOutput.cs
- LabelLiteral.cs
- CompositeActivityCodeGenerator.cs
- BrowserTree.cs
- GeneralTransformGroup.cs
- VirtualPath.cs
- CharConverter.cs
- ConstrainedDataObject.cs
- HttpCacheVary.cs
- RuntimeCompatibilityAttribute.cs
- XmlAnyElementAttributes.cs
- DifferencingCollection.cs
- PenContexts.cs
- PersonalizationProvider.cs
- ZipQueryOperator.cs
- APCustomTypeDescriptor.cs
- PackWebResponse.cs
- ForeignConstraint.cs
- PresentationTraceSources.cs
- DataGridRowDetailsEventArgs.cs
- ThreadExceptionDialog.cs
- InfoCardMasterKey.cs
- SafeRightsManagementHandle.cs
- SystemGatewayIPAddressInformation.cs
- safelink.cs
- XmlSchemaAppInfo.cs
- TreeView.cs