Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Design / Serialization / ResolveNameEventArgs.cs / 1305376 / ResolveNameEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design.Serialization { using System; using System.Security.Permissions; ////// EventArgs for the ResolveNameEventHandler. This event is used /// by the serialization process to match a name to an object /// instance. /// [HostProtection(SharedState = true)] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name = "FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class ResolveNameEventArgs : EventArgs { private string name; private object value; ////// Creates a new resolve name event args object. /// public ResolveNameEventArgs(string name) { this.name = name; this.value = null; } ////// The name of the object that needs to be resolved. /// public string Name { get { return name; } } ////// The object that matches the name. /// public object Value { get { return value; } set { this.value = value; } } } } // 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
- WeakHashtable.cs
- QuerySettings.cs
- DispatcherHookEventArgs.cs
- GridItemPattern.cs
- MultiBindingExpression.cs
- CacheMode.cs
- ResourceWriter.cs
- SqlBulkCopy.cs
- Quaternion.cs
- PeerCustomResolverBindingElement.cs
- SizeChangedInfo.cs
- DataViewManagerListItemTypeDescriptor.cs
- PaintValueEventArgs.cs
- SchemaMapping.cs
- GeneralTransform2DTo3DTo2D.cs
- DetailsViewInsertEventArgs.cs
- ManipulationInertiaStartingEventArgs.cs
- InternalsVisibleToAttribute.cs
- BindingMAnagerBase.cs
- MaterialCollection.cs
- SqlGenerator.cs
- Errors.cs
- CmsUtils.cs
- XmlSchemaAttributeGroup.cs
- ToolStripItemTextRenderEventArgs.cs
- DrawListViewColumnHeaderEventArgs.cs
- TemplatePartAttribute.cs
- UniformGrid.cs
- BrowserDefinitionCollection.cs
- StandardTransformFactory.cs
- GrammarBuilderWildcard.cs
- EnumerableRowCollectionExtensions.cs
- PointIndependentAnimationStorage.cs
- DefaultTypeArgumentAttribute.cs
- TerminateSequenceResponse.cs
- ComponentCollection.cs
- SqlDataSourceStatusEventArgs.cs
- Win32MouseDevice.cs
- CapabilitiesUse.cs
- StatusBarAutomationPeer.cs
- AnimationClockResource.cs
- DataExchangeServiceBinder.cs
- DataGridCaption.cs
- CqlWriter.cs
- RelOps.cs
- UriScheme.cs
- ViewKeyConstraint.cs
- ListViewInsertEventArgs.cs
- JsonSerializer.cs
- SecurityManager.cs
- XmlMessageFormatter.cs
- PanelDesigner.cs
- PlatformNotSupportedException.cs
- SwitchLevelAttribute.cs
- HtmlFormAdapter.cs
- DataGridSortCommandEventArgs.cs
- ExpressionReplacer.cs
- SingleKeyFrameCollection.cs
- BaseCollection.cs
- BamlTreeMap.cs
- FrameworkElementFactory.cs
- LinqDataSourceDisposeEventArgs.cs
- PropertyGrid.cs
- ObfuscateAssemblyAttribute.cs
- EntityDataSourceWrapper.cs
- ReverseQueryOperator.cs
- LocatorManager.cs
- LookupTables.cs
- SafeSecurityHandles.cs
- DocumentCollection.cs
- CharAnimationUsingKeyFrames.cs
- AttributeCollection.cs
- ISAPIWorkerRequest.cs
- HighlightComponent.cs
- LayoutInformation.cs
- smtppermission.cs
- Int64AnimationUsingKeyFrames.cs
- ConditionalAttribute.cs
- OdbcPermission.cs
- DataSourceDescriptorCollection.cs
- Selector.cs
- GeometryCollection.cs
- NullRuntimeConfig.cs
- AvTrace.cs
- WindowsSolidBrush.cs
- EndPoint.cs
- SafeReadContext.cs
- AncillaryOps.cs
- ButtonChrome.cs
- WpfSharedXamlSchemaContext.cs
- ReadOnlyAttribute.cs
- wgx_sdk_version.cs
- DrawingContext.cs
- RegisteredScript.cs
- CreateUserErrorEventArgs.cs
- BinarySecretSecurityToken.cs
- MarshalByValueComponent.cs
- QfeChecker.cs
- MimeReturn.cs
- ValidatorCollection.cs