Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.Activities / System / Activities / Debugger / LocalsItemDescription.cs / 1305376 / LocalsItemDescription.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Activities.Debugger { using System; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Runtime; // Class to describe the name and type for an early bound local // that will show up in Locals window. [DebuggerNonUserCode] [Fx.Tag.XamlVisible(false)] public class LocalsItemDescription { public LocalsItemDescription(string name, Type type) { this.Name = name; this.Type = type; } public string Name { get; private set; } [SuppressMessage(FxCop.Category.Naming, FxCop.Rule.PropertyNamesShouldNotMatchGetMethods, Justification = "Workflow normalizes on Type for Type properties")] public Type Type { get; private set; } public override string ToString() { return this.Name + ":" + this.Type.ToString(); } } } // 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
- SecureUICommand.cs
- CommandHelpers.cs
- CachedResourceDictionaryExtension.cs
- PagedControl.cs
- ListControlConvertEventArgs.cs
- InArgument.cs
- CultureInfoConverter.cs
- CodeDefaultValueExpression.cs
- InfoCardBinaryReader.cs
- ThrowHelper.cs
- MediaTimeline.cs
- LineVisual.cs
- SecurityTokenValidationException.cs
- SplitterPanel.cs
- KeyGestureConverter.cs
- MetadataHelper.cs
- CounterCreationDataCollection.cs
- BaseCodePageEncoding.cs
- MappingSource.cs
- ReadOnlyNameValueCollection.cs
- AnnotationComponentChooser.cs
- SelectionItemPattern.cs
- ProgressBar.cs
- ImageClickEventArgs.cs
- EntitySet.cs
- StringFunctions.cs
- DynamicPropertyHolder.cs
- Clipboard.cs
- ImageFormat.cs
- securitycriticaldata.cs
- Rect3DConverter.cs
- AbstractDataSvcMapFileLoader.cs
- CodeDomLoader.cs
- CrossSiteScriptingValidation.cs
- DateTimePicker.cs
- QueryExpr.cs
- XmlSchemaInfo.cs
- ConfigXmlSignificantWhitespace.cs
- ClientTarget.cs
- SplineKeyFrames.cs
- DBDataPermissionAttribute.cs
- RuntimeResourceSet.cs
- DNS.cs
- ObjectStateManagerMetadata.cs
- TextBox.cs
- SimpleRecyclingCache.cs
- MailBnfHelper.cs
- Compiler.cs
- ContextStack.cs
- BitmapEffectGeneralTransform.cs
- ClientSession.cs
- SqlDataSourceStatusEventArgs.cs
- Stack.cs
- SqlFormatter.cs
- CodeTypeReferenceCollection.cs
- AnnotationService.cs
- JoinGraph.cs
- RegularExpressionValidator.cs
- HierarchicalDataSourceDesigner.cs
- PerformanceCounterManager.cs
- SqlConnectionString.cs
- DatatypeImplementation.cs
- DesignerProperties.cs
- updateconfighost.cs
- XmlElementList.cs
- APCustomTypeDescriptor.cs
- ErrorTableItemStyle.cs
- SubstitutionList.cs
- ThreadStaticAttribute.cs
- Thickness.cs
- DataBindingCollection.cs
- ContextMenuAutomationPeer.cs
- CultureSpecificStringDictionary.cs
- OuterGlowBitmapEffect.cs
- WindowsRegion.cs
- PreviewPageInfo.cs
- PropertyKey.cs
- PackageDocument.cs
- GridViewUpdateEventArgs.cs
- OpenTypeLayout.cs
- PhysicalFontFamily.cs
- PageParserFilter.cs
- IgnoreFileBuildProvider.cs
- FormsAuthenticationUserCollection.cs
- PartialArray.cs
- TextDocumentView.cs
- ListView.cs
- BitmapEffectCollection.cs
- AnnotationResourceCollection.cs
- PrinterUnitConvert.cs
- DateTimeFormat.cs
- AppDomainManager.cs
- ListViewDeletedEventArgs.cs
- ProfileParameter.cs
- IndexedSelectQueryOperator.cs
- TextEditorCopyPaste.cs
- PhonemeEventArgs.cs
- SecurityUtils.cs
- cryptoapiTransform.cs
- LineSegment.cs