Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Net / System / Net / Configuration / WebProxyScriptElement.cs / 1 / WebProxyScriptElement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System; using System.Configuration; using System.Security.Permissions; public sealed class WebProxyScriptElement : ConfigurationElement { public WebProxyScriptElement() { this.properties.Add(this.downloadTimeout); /* Not used with Managed JScript this.properties.Add(this.executionTimeout); */ } 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; try { ExceptionHelper.WebPermissionUnrestricted.Demand(); } catch (Exception exception) { throw new ConfigurationErrorsException( SR.GetString(SR.net_config_element_permission, ConfigurationStrings.WebProxyScript), exception); } } [ConfigurationProperty(ConfigurationStrings.DownloadTimeout, DefaultValue = "00:02:00")] public TimeSpan DownloadTimeout { get { return (TimeSpan) this[this.downloadTimeout]; } set { this[this.downloadTimeout] = value; } } /* Not used with Managed JScript [ConfigurationProperty(ConfigurationStrings.ExecutionTimeout, DefaultValue = "00:00:05")] public TimeSpan ExecutionTimeout { get { return (TimeSpan) this[this.executionTimeout]; } set { this[this.executionTimeout] = value; } } */ protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty downloadTimeout = new ConfigurationProperty(ConfigurationStrings.DownloadTimeout, typeof(TimeSpan), TimeSpan.FromMinutes(1), ConfigurationPropertyOptions.None); /* Not used with Managed JScript readonly ConfigurationProperty executionTimeout = new ConfigurationProperty(ConfigurationStrings.ExecutionTimeout, typeof(TimeSpan), TimeSpan.FromSeconds(5), 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.Security.Permissions; public sealed class WebProxyScriptElement : ConfigurationElement { public WebProxyScriptElement() { this.properties.Add(this.downloadTimeout); /* Not used with Managed JScript this.properties.Add(this.executionTimeout); */ } 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; try { ExceptionHelper.WebPermissionUnrestricted.Demand(); } catch (Exception exception) { throw new ConfigurationErrorsException( SR.GetString(SR.net_config_element_permission, ConfigurationStrings.WebProxyScript), exception); } } [ConfigurationProperty(ConfigurationStrings.DownloadTimeout, DefaultValue = "00:02:00")] public TimeSpan DownloadTimeout { get { return (TimeSpan) this[this.downloadTimeout]; } set { this[this.downloadTimeout] = value; } } /* Not used with Managed JScript [ConfigurationProperty(ConfigurationStrings.ExecutionTimeout, DefaultValue = "00:00:05")] public TimeSpan ExecutionTimeout { get { return (TimeSpan) this[this.executionTimeout]; } set { this[this.executionTimeout] = value; } } */ protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty downloadTimeout = new ConfigurationProperty(ConfigurationStrings.DownloadTimeout, typeof(TimeSpan), TimeSpan.FromMinutes(1), ConfigurationPropertyOptions.None); /* Not used with Managed JScript readonly ConfigurationProperty executionTimeout = new ConfigurationProperty(ConfigurationStrings.ExecutionTimeout, typeof(TimeSpan), TimeSpan.FromSeconds(5), 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
- DataGridViewCellEventArgs.cs
- PageCatalogPart.cs
- XPathArrayIterator.cs
- ParameterCollection.cs
- ErrorRuntimeConfig.cs
- VerificationAttribute.cs
- PerformanceCounterPermissionAttribute.cs
- MarkupProperty.cs
- Psha1DerivedKeyGenerator.cs
- GlobalProxySelection.cs
- SoapMessage.cs
- UniqueIdentifierService.cs
- ListViewInsertedEventArgs.cs
- CacheModeConverter.cs
- SimpleExpression.cs
- ServiceModelDictionary.cs
- URLAttribute.cs
- LineVisual.cs
- QueryOperator.cs
- Misc.cs
- Stylus.cs
- CodeSubDirectoriesCollection.cs
- QueryCursorEventArgs.cs
- UIElement3DAutomationPeer.cs
- ExpressionParser.cs
- DesignTimeVisibleAttribute.cs
- BinaryMessageFormatter.cs
- XmlSortKeyAccumulator.cs
- TraceRecord.cs
- SqlPersonalizationProvider.cs
- RangeBaseAutomationPeer.cs
- ControlType.cs
- RepeatBehaviorConverter.cs
- XmlDocumentViewSchema.cs
- SystemPens.cs
- UInt16Converter.cs
- CopyOnWriteList.cs
- X509CertificateValidator.cs
- InstanceNameConverter.cs
- SoapFault.cs
- ResXResourceSet.cs
- Dispatcher.cs
- ReflectionUtil.cs
- CacheManager.cs
- RangeBaseAutomationPeer.cs
- ButtonColumn.cs
- WindowsFormsSynchronizationContext.cs
- SecurityHelper.cs
- Properties.cs
- TabControl.cs
- UniqueEventHelper.cs
- TemplateKeyConverter.cs
- DecimalAnimation.cs
- ToolStripHighContrastRenderer.cs
- SkinBuilder.cs
- ThicknessAnimationBase.cs
- RawAppCommandInputReport.cs
- LeftCellWrapper.cs
- BaseCodeDomTreeGenerator.cs
- RichTextBoxContextMenu.cs
- EntryIndex.cs
- SoapSchemaMember.cs
- TextTreeFixupNode.cs
- RelationshipFixer.cs
- ClientSponsor.cs
- WebPartZoneBase.cs
- ChildrenQuery.cs
- ColumnReorderedEventArgs.cs
- UpDownEvent.cs
- PersistenceProviderDirectory.cs
- ProcessModelInfo.cs
- TextFormatterImp.cs
- ProtocolElementCollection.cs
- ConsumerConnectionPoint.cs
- DataBinder.cs
- XsdValidatingReader.cs
- PackagePart.cs
- WebPartConnectionsCancelEventArgs.cs
- followingquery.cs
- SchemaManager.cs
- ResourcesBuildProvider.cs
- ColumnMapCopier.cs
- AppSecurityManager.cs
- UndoManager.cs
- XmlReflectionMember.cs
- PersistenceTypeAttribute.cs
- GenericEnumerator.cs
- ReadingWritingEntityEventArgs.cs
- MultiSelector.cs
- WeakReferenceKey.cs
- ByteStreamGeometryContext.cs
- CompatibleIComparer.cs
- CheckBoxPopupAdapter.cs
- DataServiceQuery.cs
- ConfigurationException.cs
- httpstaticobjectscollection.cs
- LinkArea.cs
- AttributeConverter.cs
- Publisher.cs
- DataObjectSettingDataEventArgs.cs