Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- BoundField.cs
- BindingElementCollection.cs
- InheritablePropertyChangeInfo.cs
- BitmapEffect.cs
- FrameworkObject.cs
- StreamReader.cs
- NullReferenceException.cs
- BaseUriHelper.cs
- SerializableAttribute.cs
- BindingOperations.cs
- MulticastDelegate.cs
- prompt.cs
- GetMemberBinder.cs
- InitializerFacet.cs
- ModelTreeEnumerator.cs
- ProfileManager.cs
- LogEntry.cs
- HttpRequestMessageProperty.cs
- SetStoryboardSpeedRatio.cs
- SqlDataSourceView.cs
- WebPartConnectionsConnectVerb.cs
- XmlSchemaSimpleTypeList.cs
- _ShellExpression.cs
- Activator.cs
- FastEncoderWindow.cs
- ClassValidator.cs
- SemaphoreSecurity.cs
- FontCollection.cs
- DifferencingCollection.cs
- StylusCollection.cs
- ActivityMarkupSerializationProvider.cs
- EndEvent.cs
- GifBitmapEncoder.cs
- DataGridDetailsPresenter.cs
- ServiceNameElementCollection.cs
- DesignerProperties.cs
- DesignerWidgets.cs
- DragEvent.cs
- DocumentViewerAutomationPeer.cs
- SortFieldComparer.cs
- StaticSiteMapProvider.cs
- ReadOnlyCollectionBuilder.cs
- namescope.cs
- EncryptedXml.cs
- ExecutedRoutedEventArgs.cs
- IndexedEnumerable.cs
- SEHException.cs
- FillRuleValidation.cs
- KeyPullup.cs
- SynchronizationLockException.cs
- DbConnectionStringCommon.cs
- TranslateTransform.cs
- View.cs
- JavaScriptSerializer.cs
- WriteFileContext.cs
- CatalogZoneBase.cs
- ServicePointManager.cs
- UserControlParser.cs
- Queue.cs
- ManualResetEvent.cs
- AuthenticationModuleElementCollection.cs
- PartialCachingControl.cs
- RoleManagerModule.cs
- DesignRelationCollection.cs
- AbstractDataSvcMapFileLoader.cs
- DataGridHeaderBorder.cs
- BulletedList.cs
- SqlParameterizer.cs
- RandomDelayQueuedSendsAsyncResult.cs
- WebBrowserBase.cs
- base64Transforms.cs
- XmlCharCheckingReader.cs
- UIElementAutomationPeer.cs
- RelationshipConverter.cs
- GeneralTransform2DTo3DTo2D.cs
- PathParser.cs
- EventItfInfo.cs
- SmiTypedGetterSetter.cs
- Ops.cs
- Pointer.cs
- ContentElement.cs
- CryptoHelper.cs
- DecoratedNameAttribute.cs
- ValidatingPropertiesEventArgs.cs
- DataConnectionHelper.cs
- Enum.cs
- _DisconnectOverlappedAsyncResult.cs
- HWStack.cs
- XpsFilter.cs
- WebPartVerbCollection.cs
- ListViewContainer.cs
- DataGridViewAutoSizeModeEventArgs.cs
- ReaderContextStackData.cs
- ObjectManager.cs
- TokenBasedSetEnumerator.cs
- Binding.cs
- FileDetails.cs
- JavaScriptSerializer.cs
- ToolStripManager.cs
- Repeater.cs