Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Presentation / System / Activities / Presentation / Base / Documents / ViewManagerAttribute.cs / 1305376 / ViewManagerAttribute.cs
namespace System.Activities.Presentation.Documents { using System.Activities.Presentation; using System.Activities.Presentation.Internal.Properties; using System; using System.Globalization; ////// This attribute can be placed on the root of a model /// object graph to specify what view manager should be /// used to present the view. /// [AttributeUsage(AttributeTargets.Class, Inherited=true, AllowMultiple=false)] sealed class ViewManagerAttribute : Attribute { private Type _viewManagerType; ////// An empty ViewManagerAttribute allows you to "unset" the view manager from a base class. /// public ViewManagerAttribute() { } ////// Creates a new ViewManager attribute. /// /// The type of view manager to use. The type specified must derive from ViewManager. ///If viewManagerType is null. ///If viewManagerType does not specify a type that derives from ViewManager. public ViewManagerAttribute(Type viewManagerType) { if (viewManagerType == null) throw FxTrace.Exception.ArgumentNull("viewManagerType"); if (!typeof(ViewManager).IsAssignableFrom(viewManagerType)) { throw FxTrace.Exception.AsError(new ArgumentException(string.Format(CultureInfo.CurrentCulture, Resources.Error_InvalidArgumentType, "viewManagerType", typeof(ViewManager).FullName))); } _viewManagerType = viewManagerType; } ////// The type of view manager to create for the model. /// public Type ViewManagerType { get { return _viewManagerType; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. namespace System.Activities.Presentation.Documents { using System.Activities.Presentation; using System.Activities.Presentation.Internal.Properties; using System; using System.Globalization; ////// This attribute can be placed on the root of a model /// object graph to specify what view manager should be /// used to present the view. /// [AttributeUsage(AttributeTargets.Class, Inherited=true, AllowMultiple=false)] sealed class ViewManagerAttribute : Attribute { private Type _viewManagerType; ////// An empty ViewManagerAttribute allows you to "unset" the view manager from a base class. /// public ViewManagerAttribute() { } ////// Creates a new ViewManager attribute. /// /// The type of view manager to use. The type specified must derive from ViewManager. ///If viewManagerType is null. ///If viewManagerType does not specify a type that derives from ViewManager. public ViewManagerAttribute(Type viewManagerType) { if (viewManagerType == null) throw FxTrace.Exception.ArgumentNull("viewManagerType"); if (!typeof(ViewManager).IsAssignableFrom(viewManagerType)) { throw FxTrace.Exception.AsError(new ArgumentException(string.Format(CultureInfo.CurrentCulture, Resources.Error_InvalidArgumentType, "viewManagerType", typeof(ViewManager).FullName))); } _viewManagerType = viewManagerType; } ////// The type of view manager to create for the model. /// public Type ViewManagerType { get { return _viewManagerType; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SerializationStore.cs
- XmlDataSourceNodeDescriptor.cs
- EFDataModelProvider.cs
- StorageScalarPropertyMapping.cs
- SessionStateModule.cs
- HtmlEmptyTagControlBuilder.cs
- MonitorWrapper.cs
- VerificationException.cs
- DotExpr.cs
- XmlSchemaDocumentation.cs
- XmlUrlEditor.cs
- DesignerAttribute.cs
- OptionUsage.cs
- UIElementPropertyUndoUnit.cs
- StorageSetMapping.cs
- IisTraceListener.cs
- HitTestDrawingContextWalker.cs
- Underline.cs
- DocumentPageTextView.cs
- RoleGroupCollection.cs
- CacheSection.cs
- NotFiniteNumberException.cs
- SpStreamWrapper.cs
- TypedDataSetSchemaImporterExtension.cs
- DeferrableContent.cs
- EntityDataSourceValidationException.cs
- VisualStateManager.cs
- DbMetaDataFactory.cs
- EmbeddedMailObject.cs
- Script.cs
- HtmlElement.cs
- XmlComplianceUtil.cs
- _AutoWebProxyScriptWrapper.cs
- ChildDocumentBlock.cs
- CommentEmitter.cs
- HttpListenerRequestUriBuilder.cs
- DataGridViewBindingCompleteEventArgs.cs
- ApplicationGesture.cs
- DiscoveryMessageSequence11.cs
- ProcessHostFactoryHelper.cs
- TableLayoutCellPaintEventArgs.cs
- Deserializer.cs
- DynamicQueryableWrapper.cs
- Membership.cs
- DrawingBrush.cs
- Transform.cs
- DynamicILGenerator.cs
- AssociatedControlConverter.cs
- figurelengthconverter.cs
- COM2PropertyPageUITypeConverter.cs
- VolatileEnlistmentMultiplexing.cs
- TextElementEnumerator.cs
- ToolStripContainer.cs
- ToolboxComponentsCreatedEventArgs.cs
- ActivityExecutorDelegateInfo.cs
- JumpTask.cs
- OleDbError.cs
- Matrix3DStack.cs
- BooleanAnimationBase.cs
- GradientStop.cs
- SystemIcons.cs
- DbBuffer.cs
- StackBuilderSink.cs
- XmlImplementation.cs
- ViewGenerator.cs
- Activator.cs
- StructuralObject.cs
- XmlRawWriter.cs
- RayMeshGeometry3DHitTestResult.cs
- PageSetupDialog.cs
- StorageRoot.cs
- MSAANativeProvider.cs
- ProviderIncompatibleException.cs
- SiteMapDataSource.cs
- BulletChrome.cs
- ApplicationGesture.cs
- IListConverters.cs
- ListenerUnsafeNativeMethods.cs
- ComboBoxRenderer.cs
- ListViewHitTestInfo.cs
- ListenerElementsCollection.cs
- HttpHandler.cs
- DataTableExtensions.cs
- ProtocolsInstallComponent.cs
- DoubleKeyFrameCollection.cs
- SqlConnectionPoolProviderInfo.cs
- PeekCompletedEventArgs.cs
- ChannelManager.cs
- HeaderUtility.cs
- DataRowView.cs
- DelegateOutArgument.cs
- DataGridViewCellCollection.cs
- HttpException.cs
- BuildProvider.cs
- DelegateHelpers.Generated.cs
- AnchoredBlock.cs
- CollectionDataContract.cs
- ValueTable.cs
- RegularExpressionValidator.cs
- StringSorter.cs