Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- PolygonHotSpot.cs
- BitmapPalettes.cs
- XamlInt32CollectionSerializer.cs
- Dispatcher.cs
- Maps.cs
- CustomWebEventKey.cs
- IsolatedStoragePermission.cs
- WebEventTraceProvider.cs
- HwndHostAutomationPeer.cs
- safePerfProviderHandle.cs
- Visual3D.cs
- HtmlMeta.cs
- ClrProviderManifest.cs
- ImageField.cs
- TrackingStringDictionary.cs
- OleDbMetaDataFactory.cs
- QilReplaceVisitor.cs
- BitVector32.cs
- ListViewItem.cs
- Panel.cs
- ObjectIDGenerator.cs
- ToolboxControl.cs
- ProtocolElement.cs
- OptionUsage.cs
- AssemblyHelper.cs
- StickyNoteAnnotations.cs
- RegexRunner.cs
- ImageKeyConverter.cs
- BinaryMethodMessage.cs
- CompiledRegexRunnerFactory.cs
- CompilationUtil.cs
- SerializableAttribute.cs
- ZipFileInfo.cs
- ListItemViewControl.cs
- SmiMetaData.cs
- SingleStorage.cs
- LinkArea.cs
- MarshalByRefObject.cs
- WithStatement.cs
- KeyboardNavigation.cs
- ProcessStartInfo.cs
- TypeSystemProvider.cs
- SQLDecimal.cs
- _NtlmClient.cs
- AttachedPropertyMethodSelector.cs
- GridEntry.cs
- ISAPIRuntime.cs
- TextServicesPropertyRanges.cs
- DoubleLinkList.cs
- Base64Decoder.cs
- BlurEffect.cs
- DebugHandleTracker.cs
- EtwTrace.cs
- SQLDateTimeStorage.cs
- CharConverter.cs
- PeerApplication.cs
- ExpressionDumper.cs
- UpdateManifestForBrowserApplication.cs
- RequestBringIntoViewEventArgs.cs
- Hyperlink.cs
- ConfigurationException.cs
- Bezier.cs
- SymmetricKey.cs
- RemotingConfigParser.cs
- XmlnsCompatibleWithAttribute.cs
- EdmFunctionAttribute.cs
- XhtmlBasicImageAdapter.cs
- CompositeScriptReference.cs
- ProviderConnectionPoint.cs
- Int32Converter.cs
- TerminateDesigner.cs
- GridItemPattern.cs
- XmlSchemaSequence.cs
- QueryExtender.cs
- SoapException.cs
- MachineSettingsSection.cs
- IgnoreSection.cs
- SourceFileBuildProvider.cs
- ListViewSortEventArgs.cs
- XamlHostingConfiguration.cs
- Event.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- WsdlInspector.cs
- Model3DGroup.cs
- SqlMethods.cs
- QueryProcessor.cs
- VsPropertyGrid.cs
- AssemblyHash.cs
- Parser.cs
- ProjectionPruner.cs
- CoTaskMemUnicodeSafeHandle.cs
- BadImageFormatException.cs
- InvokeHandlers.cs
- XmlUtilWriter.cs
- BindableAttribute.cs
- ControllableStoryboardAction.cs
- ControlDesigner.cs
- TimeoutTimer.cs
- ListBindableAttribute.cs
- FixedSOMGroup.cs