Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.ServiceModel.Discovery / System / ServiceModel / Discovery / Configuration / UdpDiscoveryEndpointElement.cs / 1305376 / UdpDiscoveryEndpointElement.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; public class UdpDiscoveryEndpointElement : DiscoveryEndpointElement { ConfigurationPropertyCollection properties; public UdpDiscoveryEndpointElement() : base() { } [ConfigurationProperty(ConfigurationStrings.MaxResponseDelay, DefaultValue = DiscoveryDefaults.Udp.AppMaxDelayString)] [TypeConverter(typeof(TimeSpanOrInfiniteConverter))] [ServiceModelTimeSpanValidator(MinValueString = ConfigurationStrings.TimeSpanZero)] public new TimeSpan MaxResponseDelay { get { return base.MaxResponseDelay; } set { base.MaxResponseDelay = value; } } [ConfigurationProperty(ConfigurationStrings.DiscoveryMode, DefaultValue = ServiceDiscoveryMode.Adhoc)] [SuppressMessage(FxCop.Category.Configuration, FxCop.Rule.ConfigurationValidatorAttributeRule)] public new ServiceDiscoveryMode DiscoveryMode { get { return base.DiscoveryMode; } set { base.DiscoveryMode = value; } } [ConfigurationProperty(ConfigurationStrings.MulticastAddress, DefaultValue = ProtocolStrings.Udp.MulticastIPv4Address)] [SuppressMessage(FxCop.Category.Configuration, FxCop.Rule.ConfigurationValidatorAttributeRule)] public Uri MulticastAddress { get { return (Uri)base[ConfigurationStrings.MulticastAddress]; } set { if (value == null) { throw FxTrace.Exception.ArgumentNull("value"); } base[ConfigurationStrings.MulticastAddress] = value; } } [ConfigurationProperty(ConfigurationStrings.TransportSettings)] public UdpTransportSettingsElement TransportSettings { get { return (UdpTransportSettingsElement)base[ConfigurationStrings.TransportSettings]; } } protected internal override Type EndpointType { get { return typeof(UdpDiscoveryEndpoint); } } protected override ConfigurationPropertyCollection Properties { get { if (this.properties == null) { ConfigurationPropertyCollection properties = base.Properties; properties.Remove(ConfigurationStrings.DiscoveryMode); properties.Remove(ConfigurationStrings.MaxResponseDelay); properties.Add( new ConfigurationProperty( ConfigurationStrings.MaxResponseDelay, typeof(TimeSpan), DiscoveryDefaults.Udp.AppMaxDelay, new TimeSpanOrInfiniteConverter(), new TimeSpanOrInfiniteValidator(TimeSpan.Zero, TimeSpan.MaxValue), ConfigurationPropertyOptions.None)); properties.Add( new ConfigurationProperty( ConfigurationStrings.DiscoveryMode, typeof(ServiceDiscoveryMode), ServiceDiscoveryMode.Adhoc, null, null, ConfigurationPropertyOptions.None)); properties.Add( new ConfigurationProperty( ConfigurationStrings.MulticastAddress, typeof(Uri), UdpDiscoveryEndpoint.DefaultIPv4MulticastAddress, null, null, ConfigurationPropertyOptions.None)); properties.Add( new ConfigurationProperty( ConfigurationStrings.TransportSettings, typeof(UdpTransportSettingsElement), null, null, null, ConfigurationPropertyOptions.None)); this.properties = properties; } return this.properties; } } protected internal override ServiceEndpoint CreateServiceEndpoint(ContractDescription contractDescription) { return new UdpDiscoveryEndpoint(this.DiscoveryVersion, this.MulticastAddress); } protected internal override void InitializeFrom(ServiceEndpoint endpoint) { base.InitializeFrom(endpoint); UdpDiscoveryEndpoint source = (UdpDiscoveryEndpoint)endpoint; this.MaxResponseDelay = source.MaxResponseDelay; this.DiscoveryMode = source.DiscoveryMode; this.MulticastAddress = source.MulticastAddress; this.TransportSettings.InitializeFrom(source.TransportSettings); } protected override void OnInitializeAndValidate(ChannelEndpointElement channelEndpointElement) { base.OnInitializeAndValidate(channelEndpointElement); ConfigurationUtility.InitializeAndValidateUdpChannelEndpointElement(channelEndpointElement); } protected override void OnInitializeAndValidate(ServiceEndpointElement serviceEndpointElement) { base.OnInitializeAndValidate(serviceEndpointElement); ConfigurationUtility.InitializeAndValidateUdpServiceEndpointElement(serviceEndpointElement); } protected override void OnApplyConfiguration(ServiceEndpoint endpoint, ServiceEndpointElement serviceEndpointElement) { base.OnApplyConfiguration(endpoint, serviceEndpointElement); ApplyConfiguration(endpoint); } protected override void OnApplyConfiguration(ServiceEndpoint endpoint, ChannelEndpointElement serviceEndpointElement) { base.OnApplyConfiguration(endpoint, serviceEndpointElement); ApplyConfiguration(endpoint); } void ApplyConfiguration(ServiceEndpoint endpoint) { UdpDiscoveryEndpoint udpDiscoveryEndpoint = (UdpDiscoveryEndpoint)endpoint; udpDiscoveryEndpoint.MulticastAddress = this.MulticastAddress; this.TransportSettings.ApplyConfiguration(udpDiscoveryEndpoint.TransportSettings); } } } // 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
- PlaceHolder.cs
- _Semaphore.cs
- SafeNativeMethods.cs
- Cursor.cs
- ToolStripRenderEventArgs.cs
- MarkupCompiler.cs
- SelectionProcessor.cs
- UpdateProgress.cs
- Exceptions.cs
- Calendar.cs
- SoapExtensionStream.cs
- FolderBrowserDialog.cs
- ClientUrlResolverWrapper.cs
- ComboBoxItem.cs
- ServerType.cs
- wgx_commands.cs
- ZeroOpNode.cs
- TextViewSelectionProcessor.cs
- HideDisabledControlAdapter.cs
- Exceptions.cs
- SapiGrammar.cs
- TransactionCache.cs
- XPathNodePointer.cs
- Sentence.cs
- XmlSchemaSubstitutionGroup.cs
- SelectionChangedEventArgs.cs
- RegexParser.cs
- PointLightBase.cs
- DataSourceXmlTextReader.cs
- MonitoringDescriptionAttribute.cs
- ParsedAttributeCollection.cs
- SourceInterpreter.cs
- GacUtil.cs
- SettingsPropertyValueCollection.cs
- EmbeddedMailObjectCollectionEditor.cs
- RtfControls.cs
- WebException.cs
- RowUpdatingEventArgs.cs
- SelectionHighlightInfo.cs
- NonParentingControl.cs
- Keyboard.cs
- XmlNamespaceMapping.cs
- SqlMetaData.cs
- FunctionMappingTranslator.cs
- SystemIcmpV4Statistics.cs
- RightsManagementEncryptedStream.cs
- VectorValueSerializer.cs
- SQLBinaryStorage.cs
- PersonalizationStateQuery.cs
- WebPartChrome.cs
- XmlCustomFormatter.cs
- QuaternionKeyFrameCollection.cs
- MediaElement.cs
- JoinTreeSlot.cs
- ExceptionValidationRule.cs
- XmlSchemaValidator.cs
- CloseCryptoHandleRequest.cs
- CodeExpressionStatement.cs
- Int32RectConverter.cs
- Rect3D.cs
- Compiler.cs
- Application.cs
- XmlSchemaType.cs
- LoginViewDesigner.cs
- Behavior.cs
- ReadOnlyDictionary.cs
- CompareValidator.cs
- SecondaryViewProvider.cs
- NativeObjectSecurity.cs
- ValidationSummary.cs
- SmiTypedGetterSetter.cs
- XmlNamespaceDeclarationsAttribute.cs
- FileAuthorizationModule.cs
- GraphicsPathIterator.cs
- DiscreteKeyFrames.cs
- ComponentResourceManager.cs
- SerializationEventsCache.cs
- EmptyStringExpandableObjectConverter.cs
- SqlIdentifier.cs
- OutputCacheSection.cs
- MsmqMessage.cs
- TaiwanLunisolarCalendar.cs
- WebZone.cs
- CacheChildrenQuery.cs
- SiblingIterators.cs
- SynchronizedInputAdaptor.cs
- XmlSchemaSimpleTypeUnion.cs
- Matrix3DStack.cs
- DataTemplate.cs
- XmlAutoDetectWriter.cs
- NavigationWindowAutomationPeer.cs
- DatagridviewDisplayedBandsData.cs
- MasterPageCodeDomTreeGenerator.cs
- XpsFixedDocumentSequenceReaderWriter.cs
- _KerberosClient.cs
- DockPatternIdentifiers.cs
- SafeEventLogReadHandle.cs
- PackageFilter.cs
- ViewBox.cs
- SymbolType.cs