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
- DataTrigger.cs
- WindowsButton.cs
- HwndStylusInputProvider.cs
- WebResponse.cs
- CompensatableTransactionScopeActivity.cs
- AmbientLight.cs
- ToolStripRenderer.cs
- BreakRecordTable.cs
- ISessionStateStore.cs
- DataPagerFieldCollection.cs
- WarningException.cs
- GifBitmapDecoder.cs
- SiteOfOriginPart.cs
- UIElement3D.cs
- DataSourceXmlSerializationAttribute.cs
- Transform3D.cs
- OperationParameterInfo.cs
- BlockUIContainer.cs
- RestHandlerFactory.cs
- WindowClosedEventArgs.cs
- AlternateView.cs
- WorkflowApplicationTerminatedException.cs
- InfoCardMasterKey.cs
- WebPartDeleteVerb.cs
- HandleValueEditor.cs
- Bezier.cs
- WinEventWrap.cs
- NetworkInformationPermission.cs
- HttpStreamXmlDictionaryWriter.cs
- DataQuery.cs
- TreeViewCancelEvent.cs
- counter.cs
- XmlSchema.cs
- MailDefinition.cs
- EntitySqlQueryCacheKey.cs
- BinaryCommonClasses.cs
- _SafeNetHandles.cs
- MethodBody.cs
- RegistryKey.cs
- UpdateEventArgs.cs
- Blend.cs
- MaxSessionCountExceededException.cs
- httpapplicationstate.cs
- WebResourceUtil.cs
- OdbcConnectionPoolProviderInfo.cs
- TrackBarRenderer.cs
- Convert.cs
- X509Chain.cs
- BuildProvidersCompiler.cs
- ConcurrentQueue.cs
- LogicalChannel.cs
- XpsPartBase.cs
- CallbackHandler.cs
- RootProfilePropertySettingsCollection.cs
- NativeMethods.cs
- XmlHierarchicalEnumerable.cs
- KnownTypes.cs
- TimersDescriptionAttribute.cs
- ResourceReferenceExpression.cs
- DataTableCollection.cs
- WSDualHttpBindingElement.cs
- AxHost.cs
- ResourceManagerWrapper.cs
- Exceptions.cs
- WebPartConnectionsCancelEventArgs.cs
- PageWrapper.cs
- DataControlLinkButton.cs
- InputLanguageSource.cs
- TextSegment.cs
- ServiceModelSectionGroup.cs
- StateManagedCollection.cs
- DataServices.cs
- ReflectEventDescriptor.cs
- JsonServiceDocumentSerializer.cs
- VersionUtil.cs
- DataRowCollection.cs
- Window.cs
- MimeTypeMapper.cs
- DataGridViewColumnDesigner.cs
- DictionarySurrogate.cs
- TransactionScopeDesigner.cs
- RightNameExpirationInfoPair.cs
- SchemaImporterExtension.cs
- VirtualPathProvider.cs
- UnorderedHashRepartitionStream.cs
- NumericUpDownAccelerationCollection.cs
- OleDbPropertySetGuid.cs
- InputReport.cs
- _BasicClient.cs
- CheckedPointers.cs
- ContentElementAutomationPeer.cs
- Convert.cs
- XPathSelfQuery.cs
- CharacterShapingProperties.cs
- AnnotationResourceCollection.cs
- ToolStripButton.cs
- RoutedEvent.cs
- DocumentApplicationJournalEntry.cs
- LineBreakRecord.cs
- MD5.cs