Code:
/ DotNET / DotNET / 8.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
- FtpWebRequest.cs
- xsdvalidator.cs
- ServicePoint.cs
- XmlSecureResolver.cs
- IPPacketInformation.cs
- ComEventsInfo.cs
- FormViewInsertEventArgs.cs
- SafeRegistryHandle.cs
- StandardBindingReliableSessionElement.cs
- DataGridViewTopLeftHeaderCell.cs
- RegisteredScript.cs
- DataGridViewCheckBoxColumn.cs
- ThicknessKeyFrameCollection.cs
- IInstanceTable.cs
- SystemIPAddressInformation.cs
- GcSettings.cs
- Misc.cs
- ApplicationSecurityManager.cs
- SqlDataSourceFilteringEventArgs.cs
- Console.cs
- PerformanceCounterManager.cs
- SoapObjectInfo.cs
- TextElementCollectionHelper.cs
- CollectionEditorDialog.cs
- Set.cs
- NativeBuffer.cs
- ConfigXmlAttribute.cs
- ConditionCollection.cs
- OutOfMemoryException.cs
- XmlSchemaObjectTable.cs
- AddIn.cs
- WSSecurityOneDotZeroReceiveSecurityHeader.cs
- AuthenticationSchemesHelper.cs
- TextServicesHost.cs
- TextTreeTextElementNode.cs
- CodeAttributeDeclarationCollection.cs
- DataViewListener.cs
- COM2Enum.cs
- Module.cs
- Directory.cs
- TreeView.cs
- ContentValidator.cs
- FixedPageStructure.cs
- PersistenceException.cs
- EndpointIdentity.cs
- SyntaxCheck.cs
- ExtendedPropertyDescriptor.cs
- newinstructionaction.cs
- ComboBoxItem.cs
- PathFigureCollection.cs
- SemaphoreSecurity.cs
- _ChunkParse.cs
- SspiHelper.cs
- TypeReference.cs
- LayoutEvent.cs
- ChannelPoolSettingsElement.cs
- ActivityExecutorDelegateInfo.cs
- SortableBindingList.cs
- PointCollection.cs
- CompilerLocalReference.cs
- ConfigViewGenerator.cs
- TextServicesCompartment.cs
- UntypedNullExpression.cs
- XmlBufferedByteStreamReader.cs
- XmlSchemaImporter.cs
- ProtocolsSection.cs
- NetworkCredential.cs
- DESCryptoServiceProvider.cs
- PointUtil.cs
- CommonProperties.cs
- ResourceProperty.cs
- DialogResultConverter.cs
- FileVersion.cs
- OutKeywords.cs
- graph.cs
- RoutedEventArgs.cs
- OperationPerformanceCounters.cs
- LayoutManager.cs
- MemberInfoSerializationHolder.cs
- diagnosticsswitches.cs
- ConfigXmlComment.cs
- Pen.cs
- ThrowHelper.cs
- Converter.cs
- TemplateBindingExtension.cs
- ProfilePropertyMetadata.cs
- SqlWebEventProvider.cs
- XmlSchemaSimpleTypeList.cs
- QueryPageSettingsEventArgs.cs
- GlyphRunDrawing.cs
- RawStylusActions.cs
- XmlDownloadManager.cs
- CopyCodeAction.cs
- HandlerBase.cs
- SimpleRecyclingCache.cs
- SafeRegistryKey.cs
- MSAAEventDispatcher.cs
- oledbmetadatacollectionnames.cs
- QuaternionAnimationBase.cs
- mediapermission.cs