Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.ServiceModel.Discovery / System / ServiceModel / Discovery / Configuration / DiscoveryEndpointElement.cs / 1305376 / DiscoveryEndpointElement.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Discovery.Configuration { using System; using System.ComponentModel; using System.Configuration; using System.Diagnostics.CodeAnalysis; using System.Runtime; using System.ServiceModel.Configuration; using System.ServiceModel.Description; using SR2 = System.ServiceModel.Discovery.SR; public class DiscoveryEndpointElement : StandardEndpointElement { ConfigurationPropertyCollection properties; public DiscoveryEndpointElement() : base() { } [ConfigurationProperty(ConfigurationStrings.MaxResponseDelay, DefaultValue = ConfigurationStrings.TimeSpanZero)] [TypeConverter(typeof(TimeSpanOrInfiniteConverter))] [ServiceModelTimeSpanValidator(MinValueString = ConfigurationStrings.TimeSpanZero)] public TimeSpan MaxResponseDelay { get { return (TimeSpan)base[ConfigurationStrings.MaxResponseDelay]; } set { base[ConfigurationStrings.MaxResponseDelay] = value; } } [ConfigurationProperty(ConfigurationStrings.DiscoveryMode, DefaultValue = ServiceDiscoveryMode.Managed)] [SuppressMessage(FxCop.Category.Configuration, FxCop.Rule.ConfigurationValidatorAttributeRule)] public ServiceDiscoveryMode DiscoveryMode { get { return (ServiceDiscoveryMode)base[ConfigurationStrings.DiscoveryMode]; } set { base[ConfigurationStrings.DiscoveryMode] = value; } } [ConfigurationProperty(ConfigurationStrings.DiscoveryVersion, DefaultValue = ProtocolStrings.VersionNameDefault)] [TypeConverter(typeof(DiscoveryVersionConverter))] [SuppressMessage(FxCop.Category.Configuration, FxCop.Rule.ConfigurationValidatorAttributeRule)] public DiscoveryVersion DiscoveryVersion { get { return (DiscoveryVersion)base[ConfigurationStrings.DiscoveryVersion]; } set { base[ConfigurationStrings.DiscoveryVersion] = value; } } protected internal override Type EndpointType { get { return typeof(DiscoveryEndpoint); } } protected override ConfigurationPropertyCollection Properties { get { if (this.properties == null) { ConfigurationPropertyCollection properties = base.Properties; properties.Add( new ConfigurationProperty( ConfigurationStrings.MaxResponseDelay, typeof(TimeSpan), TimeSpan.Zero, new TimeSpanOrInfiniteConverter(), new TimeSpanOrInfiniteValidator(TimeSpan.Zero, TimeSpan.MaxValue), ConfigurationPropertyOptions.None)); properties.Add( new ConfigurationProperty( ConfigurationStrings.DiscoveryVersion, typeof(DiscoveryVersion), DiscoveryVersion.DefaultDiscoveryVersion, new DiscoveryVersionConverter(), null, ConfigurationPropertyOptions.None)); properties.Add( new ConfigurationProperty( ConfigurationStrings.DiscoveryMode, typeof(ServiceDiscoveryMode), ServiceDiscoveryMode.Managed, null, null, ConfigurationPropertyOptions.None)); this.properties = properties; } return this.properties; } } protected internal override ServiceEndpoint CreateServiceEndpoint(ContractDescription contractDescription) { return new DiscoveryEndpoint(this.DiscoveryVersion, this.DiscoveryMode); } protected internal override void InitializeFrom(ServiceEndpoint endpoint) { base.InitializeFrom(endpoint); DiscoveryEndpoint source = (DiscoveryEndpoint)endpoint; this.MaxResponseDelay = source.MaxResponseDelay; this.DiscoveryVersion = source.DiscoveryVersion; this.DiscoveryMode = source.DiscoveryMode; } protected override void OnInitializeAndValidate(ChannelEndpointElement channelEndpointElement) { if (!String.IsNullOrEmpty(channelEndpointElement.Contract)) { throw FxTrace.Exception.AsError(new ConfigurationErrorsException(SR2.DiscoveryConfigContractSpecified(channelEndpointElement.Kind))); } } protected override void OnInitializeAndValidate(ServiceEndpointElement serviceEndpointElement) { if (!String.IsNullOrEmpty(serviceEndpointElement.Contract)) { throw FxTrace.Exception.AsError(new ConfigurationErrorsException(SR2.DiscoveryConfigContractSpecified(serviceEndpointElement.Kind))); } if (PropertyValueOrigin.Default == serviceEndpointElement.ElementInformation.Properties[ConfigurationStrings.IsSystemEndpoint].ValueOrigin) { serviceEndpointElement.IsSystemEndpoint = true; } } protected override void OnApplyConfiguration(ServiceEndpoint endpoint, ServiceEndpointElement serviceEndpointElement) { ApplyConfiguration(endpoint); } protected override void OnApplyConfiguration(ServiceEndpoint endpoint, ChannelEndpointElement serviceEndpointElement) { ApplyConfiguration(endpoint); } void ApplyConfiguration(ServiceEndpoint endpoint) { DiscoveryEndpoint discoveryEndpoint = (DiscoveryEndpoint)endpoint; discoveryEndpoint.MaxResponseDelay = this.MaxResponseDelay; } } } // 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
- SpellerStatusTable.cs
- ToolStripPanelRow.cs
- EmbeddedMailObjectsCollection.cs
- TransactionValidationBehavior.cs
- KeyGestureConverter.cs
- VectorKeyFrameCollection.cs
- ChangeBlockUndoRecord.cs
- TdsRecordBufferSetter.cs
- BamlTreeUpdater.cs
- Method.cs
- ContainerAction.cs
- RangeBase.cs
- SqlDataSourceCustomCommandEditor.cs
- CalendarTable.cs
- DbModificationCommandTree.cs
- RuleElement.cs
- HwndHostAutomationPeer.cs
- ToolStripContextMenu.cs
- DefaultIfEmptyQueryOperator.cs
- WebPartDisplayModeEventArgs.cs
- XhtmlBasicTextBoxAdapter.cs
- RangeEnumerable.cs
- RowType.cs
- DataRecord.cs
- Style.cs
- MultiView.cs
- CodeObjectCreateExpression.cs
- ImageListUtils.cs
- SecurityUtils.cs
- TransformerTypeCollection.cs
- IntPtr.cs
- BuildResult.cs
- PackageStore.cs
- MeasurementDCInfo.cs
- ProtocolsConfigurationEntry.cs
- GcSettings.cs
- ListViewItem.cs
- ASCIIEncoding.cs
- SessionStateModule.cs
- TextFormatterImp.cs
- AsyncResult.cs
- TypeElementCollection.cs
- ConfigurationProviderException.cs
- IdentityManager.cs
- sortedlist.cs
- RenderCapability.cs
- ToolBarButton.cs
- DATA_BLOB.cs
- Binding.cs
- BaseAddressElementCollection.cs
- FontSourceCollection.cs
- Internal.cs
- SequentialOutput.cs
- InstanceView.cs
- LogArchiveSnapshot.cs
- WindowsMenu.cs
- UriExt.cs
- Pens.cs
- StorageAssociationSetMapping.cs
- MarshalDirectiveException.cs
- XmlTextReaderImplHelpers.cs
- WinInetCache.cs
- XmlQuerySequence.cs
- ModifiableIteratorCollection.cs
- HostProtectionPermission.cs
- PhysicalOps.cs
- SweepDirectionValidation.cs
- LinkButton.cs
- HierarchicalDataSourceConverter.cs
- TypeForwardedToAttribute.cs
- sapiproxy.cs
- HMACSHA384.cs
- FileUtil.cs
- CheckBoxBaseAdapter.cs
- TransactionState.cs
- Normalizer.cs
- StateDesignerConnector.cs
- ChildTable.cs
- PathFigureCollectionValueSerializer.cs
- DbTypeMap.cs
- ValidatingReaderNodeData.cs
- DecoderReplacementFallback.cs
- BoundColumn.cs
- SQLInt64.cs
- MediaPlayer.cs
- AudioException.cs
- BindingsCollection.cs
- CodeMethodReturnStatement.cs
- AlignmentXValidation.cs
- FreeFormPanel.cs
- RegistryPermission.cs
- PointLightBase.cs
- MaskedTextBoxDesigner.cs
- ToolStripItemRenderEventArgs.cs
- SplashScreenNativeMethods.cs
- ParameterDataSourceExpression.cs
- BinaryNegotiation.cs
- ISO2022Encoding.cs
- DefaultBindingPropertyAttribute.cs
- ConnectionManagementSection.cs