Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Net / System / Net / Configuration / HttpWebRequestElement.cs / 1 / HttpWebRequestElement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System; using System.Configuration; using System.Reflection; using System.Security.Permissions; public sealed class HttpWebRequestElement : ConfigurationElement { public HttpWebRequestElement() { this.properties.Add(this.maximumResponseHeadersLength); this.properties.Add(this.maximumErrorResponseLength); this.properties.Add(this.maximumUnauthorizedUploadLength); this.properties.Add(this.useUnsafeHeaderParsing); } protected override void PostDeserialize() { // Perf optimization. If the configuration is coming from machine.config // It is safe and we don't need to check for permissions. if (EvaluationContext.IsMachineLevel) return; PropertyInformation[] protectedProperties = { ElementInformation.Properties[ConfigurationStrings.MaximumResponseHeadersLength], ElementInformation.Properties[ConfigurationStrings.MaximumErrorResponseLength] }; foreach (PropertyInformation property in protectedProperties) if (property.ValueOrigin == PropertyValueOrigin.SetHere) { try { ExceptionHelper.WebPermissionUnrestricted.Demand(); } catch (Exception exception) { throw new ConfigurationErrorsException( SR.GetString(SR.net_config_property_permission, property.Name), exception); } } } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } [ConfigurationProperty(ConfigurationStrings.maximumUnauthorizedUploadLength, DefaultValue=(int)(-1))] public int MaximumUnauthorizedUploadLength { get { return (int)this[this.maximumUnauthorizedUploadLength]; } set { this[this.maximumUnauthorizedUploadLength] = value; } } [ConfigurationProperty(ConfigurationStrings.MaximumErrorResponseLength, DefaultValue=(int)(64))] public int MaximumErrorResponseLength { get { return (int)this[this.maximumErrorResponseLength]; } set { this[this.maximumErrorResponseLength] = value; } } [ConfigurationProperty(ConfigurationStrings.MaximumResponseHeadersLength, DefaultValue= 64)] public int MaximumResponseHeadersLength { get { return (int)this[this.maximumResponseHeadersLength]; } set { this[this.maximumResponseHeadersLength] = value; } } [ConfigurationProperty(ConfigurationStrings.UseUnsafeHeaderParsing, DefaultValue= false)] public bool UseUnsafeHeaderParsing { get { return (bool) this[this.useUnsafeHeaderParsing]; } set { this[this.useUnsafeHeaderParsing] = value; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty maximumResponseHeadersLength = new ConfigurationProperty(ConfigurationStrings.MaximumResponseHeadersLength, typeof(int), 64, ConfigurationPropertyOptions.None); readonly ConfigurationProperty maximumErrorResponseLength = new ConfigurationProperty(ConfigurationStrings.MaximumErrorResponseLength, typeof(int), 64, ConfigurationPropertyOptions.None); readonly ConfigurationProperty maximumUnauthorizedUploadLength = new ConfigurationProperty(ConfigurationStrings.maximumUnauthorizedUploadLength, typeof(int), -1, ConfigurationPropertyOptions.None); readonly ConfigurationProperty useUnsafeHeaderParsing = new ConfigurationProperty(ConfigurationStrings.UseUnsafeHeaderParsing, typeof(bool), false, ConfigurationPropertyOptions.None); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System; using System.Configuration; using System.Reflection; using System.Security.Permissions; public sealed class HttpWebRequestElement : ConfigurationElement { public HttpWebRequestElement() { this.properties.Add(this.maximumResponseHeadersLength); this.properties.Add(this.maximumErrorResponseLength); this.properties.Add(this.maximumUnauthorizedUploadLength); this.properties.Add(this.useUnsafeHeaderParsing); } protected override void PostDeserialize() { // Perf optimization. If the configuration is coming from machine.config // It is safe and we don't need to check for permissions. if (EvaluationContext.IsMachineLevel) return; PropertyInformation[] protectedProperties = { ElementInformation.Properties[ConfigurationStrings.MaximumResponseHeadersLength], ElementInformation.Properties[ConfigurationStrings.MaximumErrorResponseLength] }; foreach (PropertyInformation property in protectedProperties) if (property.ValueOrigin == PropertyValueOrigin.SetHere) { try { ExceptionHelper.WebPermissionUnrestricted.Demand(); } catch (Exception exception) { throw new ConfigurationErrorsException( SR.GetString(SR.net_config_property_permission, property.Name), exception); } } } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } [ConfigurationProperty(ConfigurationStrings.maximumUnauthorizedUploadLength, DefaultValue=(int)(-1))] public int MaximumUnauthorizedUploadLength { get { return (int)this[this.maximumUnauthorizedUploadLength]; } set { this[this.maximumUnauthorizedUploadLength] = value; } } [ConfigurationProperty(ConfigurationStrings.MaximumErrorResponseLength, DefaultValue=(int)(64))] public int MaximumErrorResponseLength { get { return (int)this[this.maximumErrorResponseLength]; } set { this[this.maximumErrorResponseLength] = value; } } [ConfigurationProperty(ConfigurationStrings.MaximumResponseHeadersLength, DefaultValue= 64)] public int MaximumResponseHeadersLength { get { return (int)this[this.maximumResponseHeadersLength]; } set { this[this.maximumResponseHeadersLength] = value; } } [ConfigurationProperty(ConfigurationStrings.UseUnsafeHeaderParsing, DefaultValue= false)] public bool UseUnsafeHeaderParsing { get { return (bool) this[this.useUnsafeHeaderParsing]; } set { this[this.useUnsafeHeaderParsing] = value; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty maximumResponseHeadersLength = new ConfigurationProperty(ConfigurationStrings.MaximumResponseHeadersLength, typeof(int), 64, ConfigurationPropertyOptions.None); readonly ConfigurationProperty maximumErrorResponseLength = new ConfigurationProperty(ConfigurationStrings.MaximumErrorResponseLength, typeof(int), 64, ConfigurationPropertyOptions.None); readonly ConfigurationProperty maximumUnauthorizedUploadLength = new ConfigurationProperty(ConfigurationStrings.maximumUnauthorizedUploadLength, typeof(int), -1, ConfigurationPropertyOptions.None); readonly ConfigurationProperty useUnsafeHeaderParsing = new ConfigurationProperty(ConfigurationStrings.UseUnsafeHeaderParsing, typeof(bool), false, ConfigurationPropertyOptions.None); } } // 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
- SymLanguageType.cs
- DefaultProxySection.cs
- OutputCacheModule.cs
- WorkflowDesigner.cs
- PrintDialogDesigner.cs
- CollectionChangeEventArgs.cs
- RequestStatusBarUpdateEventArgs.cs
- AnnotationHelper.cs
- AccessorTable.cs
- ResourceWriter.cs
- MetadataItemSerializer.cs
- WebResourceAttribute.cs
- _AutoWebProxyScriptHelper.cs
- WebServicesInteroperability.cs
- WebBrowserEvent.cs
- infer.cs
- _SslState.cs
- MenuItem.cs
- SoapObjectWriter.cs
- SafeSerializationManager.cs
- ObjectConverter.cs
- Hex.cs
- HtmlGenericControl.cs
- TextRangeProviderWrapper.cs
- InstanceHandleReference.cs
- SQLConvert.cs
- DataGridViewTextBoxEditingControl.cs
- ServiceModelExtensionElement.cs
- RectangleConverter.cs
- DelegatingTypeDescriptionProvider.cs
- Site.cs
- ValidatingReaderNodeData.cs
- AffineTransform3D.cs
- RtfNavigator.cs
- EventSinkHelperWriter.cs
- Misc.cs
- SourceFilter.cs
- PrintDialog.cs
- ColorAnimationBase.cs
- ActivationServices.cs
- SqlParameter.cs
- AssemblyAttributesGoHere.cs
- DotAtomReader.cs
- CompilerCollection.cs
- BufferedWebEventProvider.cs
- LeftCellWrapper.cs
- EntryWrittenEventArgs.cs
- DrawingAttributeSerializer.cs
- RegexMatch.cs
- AccessDataSourceWizardForm.cs
- DefaultHttpHandler.cs
- BridgeDataReader.cs
- InternalControlCollection.cs
- CollectionEditorDialog.cs
- ImageSource.cs
- ISAPIWorkerRequest.cs
- SqlConnectionFactory.cs
- WebUtil.cs
- HtmlHead.cs
- TrimSurroundingWhitespaceAttribute.cs
- XmlCharCheckingReader.cs
- PriorityQueue.cs
- HttpModulesSection.cs
- DescendantOverDescendantQuery.cs
- TableHeaderCell.cs
- IisTraceWebEventProvider.cs
- ObservableCollectionDefaultValueFactory.cs
- ExpressionEditorAttribute.cs
- GeneralTransform3DCollection.cs
- WriterOutput.cs
- Journaling.cs
- FilteredAttributeCollection.cs
- PreloadedPackages.cs
- MetadataPropertyAttribute.cs
- PathFigure.cs
- TextRangeProviderWrapper.cs
- DesignerTransaction.cs
- RoutedEvent.cs
- TemplateControl.cs
- MdiWindowListItemConverter.cs
- PreApplicationStartMethodAttribute.cs
- Gdiplus.cs
- CombinedGeometry.cs
- CompModSwitches.cs
- Tuple.cs
- PathStreamGeometryContext.cs
- FloatUtil.cs
- PublisherIdentityPermission.cs
- ObjectConverter.cs
- SafeNativeMethods.cs
- ListViewItemSelectionChangedEvent.cs
- FixedTextView.cs
- SimpleNameService.cs
- XmlSchemaSimpleTypeList.cs
- ServiceOperationParameter.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- WaveHeader.cs
- KeyValuePair.cs
- MultipartContentParser.cs
- TokenizerHelper.cs