Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Xaml.Hosting / System / Xaml / Hosting / Configuration / HandlerElement.cs / 1458001 / HandlerElement.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Xaml.Hosting.Configuration { using System; using System.Web; using System.Configuration; using System.Diagnostics.CodeAnalysis; using System.Runtime; public sealed class HandlerElement : ConfigurationElement { static ConfigurationPropertyCollection properties = InitializeProperties(); Type httpHandlerCLRType; Type xamlRootElementClrType; static ConfigurationPropertyCollection InitializeProperties() { ConfigurationProperty handler = new ConfigurationProperty(XamlHostingConfiguration.HttpHandlerType, typeof(string), " ", null, new StringValidator(1), ConfigurationPropertyOptions.IsRequired); ConfigurationProperty xamlRoot = new ConfigurationProperty(XamlHostingConfiguration.XamlRootElementType, typeof(string), " ", null, new StringValidator(1), ConfigurationPropertyOptions.IsKey | ConfigurationPropertyOptions.IsRequired); ConfigurationPropertyCollection tempProperties = new ConfigurationPropertyCollection(); tempProperties.Add(xamlRoot); tempProperties.Add(handler); return tempProperties; } public HandlerElement() { } [SuppressMessage(FxCop.Category.Usage, FxCop.Rule.DoNotCallOverridableMethodsInConstructors, Justification = "This is enforced by configuration classes in framework library")] public HandlerElement(string xamlType, string handlerType) { XamlRootElementType = xamlType; HttpHandlerType = handlerType; } [ConfigurationProperty(XamlHostingConfiguration.HttpHandlerType, DefaultValue = " ", Options = ConfigurationPropertyOptions.IsRequired)] [StringValidator(MinLength = 1)] public string HttpHandlerType { get { return (string)base[XamlHostingConfiguration.HttpHandlerType]; } set { if (string.IsNullOrEmpty(value)) { value = string.Empty; } base[XamlHostingConfiguration.HttpHandlerType] = value; } } [ConfigurationProperty(XamlHostingConfiguration.XamlRootElementType, DefaultValue = " ", Options = ConfigurationPropertyOptions.IsKey | ConfigurationPropertyOptions.IsRequired)] [StringValidator(MinLength = 1)] public string XamlRootElementType { get { return (string)base[XamlHostingConfiguration.XamlRootElementType]; } set { if (string.IsNullOrEmpty(value)) { value = string.Empty; } base[XamlHostingConfiguration.XamlRootElementType] = value; } } internal string Key { get { return XamlRootElementType; } } protected override ConfigurationPropertyCollection Properties { get { return properties; } } internal Type LoadHttpHandlerType() { if (this.httpHandlerCLRType == null) { this.httpHandlerCLRType = Type.GetType(HttpHandlerType, true); } return this.httpHandlerCLRType; } internal Type LoadXamlRootElementType() { if (this.xamlRootElementClrType == null) { this.xamlRootElementClrType = Type.GetType(XamlRootElementType, true); } return this.xamlRootElementClrType; } } } // 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
- CheckBoxList.cs
- XmlNamedNodeMap.cs
- SHA512CryptoServiceProvider.cs
- ReadContentAsBinaryHelper.cs
- ProjectionCamera.cs
- BuilderInfo.cs
- UpdateManifestForBrowserApplication.cs
- Selection.cs
- InfoCardCryptoHelper.cs
- ServiceCredentialsElement.cs
- XmlSerializerFactory.cs
- PeerOutputChannel.cs
- UIElement.cs
- PartitionerQueryOperator.cs
- Rotation3DAnimation.cs
- DetailsViewUpdatedEventArgs.cs
- FactoryId.cs
- JobDuplex.cs
- EntityClassGenerator.cs
- Endpoint.cs
- XmlDomTextWriter.cs
- ButtonChrome.cs
- EntityContainerEmitter.cs
- MailHeaderInfo.cs
- SlipBehavior.cs
- DataGridTableCollection.cs
- KoreanCalendar.cs
- SimpleTextLine.cs
- DurableEnlistmentState.cs
- WindowsRebar.cs
- DelegatingConfigHost.cs
- ObjectNotFoundException.cs
- RoutedEventArgs.cs
- WindowsListViewSubItem.cs
- ListControlBoundActionList.cs
- DomNameTable.cs
- ItemList.cs
- RegisteredArrayDeclaration.cs
- EventLogEntryCollection.cs
- TrustLevelCollection.cs
- TrackingProfile.cs
- RequestCacheValidator.cs
- SettingsPropertyValueCollection.cs
- DecoratedNameAttribute.cs
- Compress.cs
- NamespaceList.cs
- PackageStore.cs
- TextServicesProperty.cs
- FormsAuthenticationConfiguration.cs
- LifetimeMonitor.cs
- SafeArrayTypeMismatchException.cs
- XmlDictionaryReaderQuotas.cs
- TrackBar.cs
- GridViewRowPresenter.cs
- FloaterParagraph.cs
- ObjectQuery.cs
- ConfigXmlSignificantWhitespace.cs
- FilteredXmlReader.cs
- SHA256CryptoServiceProvider.cs
- TokenBasedSet.cs
- InvalidCastException.cs
- DataGridColumnCollection.cs
- Clock.cs
- DbParameterCollection.cs
- XmlSchemaAnyAttribute.cs
- wgx_sdk_version.cs
- DataFormat.cs
- Token.cs
- EmbossBitmapEffect.cs
- VisualTreeUtils.cs
- InlineUIContainer.cs
- AutomationEventArgs.cs
- bindurihelper.cs
- XmlSchemaSimpleContentExtension.cs
- Psha1DerivedKeyGenerator.cs
- XPathDocumentIterator.cs
- HashRepartitionEnumerator.cs
- Speller.cs
- ASCIIEncoding.cs
- SinglePageViewer.cs
- XsltSettings.cs
- DesignTimeTemplateParser.cs
- SHA256Cng.cs
- _IPv6Address.cs
- QualificationDataAttribute.cs
- QuaternionRotation3D.cs
- SimpleWorkerRequest.cs
- ConfigurationException.cs
- TcpTransportBindingElement.cs
- TagNameToTypeMapper.cs
- DesignerToolboxInfo.cs
- EventMappingSettingsCollection.cs
- ToolStripRenderer.cs
- ToolBarButtonDesigner.cs
- SqlError.cs
- DataReaderContainer.cs
- MethodCallTranslator.cs
- EmissiveMaterial.cs
- WpfKnownMember.cs
- TextInfo.cs