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
- DataGridColumn.cs
- CompilerScope.cs
- ApplicationFileParser.cs
- CopyOfAction.cs
- RowToParametersTransformer.cs
- DataGridViewLayoutData.cs
- DesignTableCollection.cs
- Tile.cs
- DownloadProgressEventArgs.cs
- OleDbConnectionInternal.cs
- Roles.cs
- _IPv6Address.cs
- ReaderWriterLock.cs
- EdmItemCollection.cs
- ItemContainerGenerator.cs
- StringToken.cs
- FileLogRecordStream.cs
- sitestring.cs
- xmlNames.cs
- login.cs
- MenuTracker.cs
- SerializationEventsCache.cs
- DoubleStorage.cs
- ParamArrayAttribute.cs
- ListCollectionView.cs
- EntryPointNotFoundException.cs
- ListViewAutomationPeer.cs
- AuthenticationModuleElement.cs
- ListView.cs
- SoapSchemaExporter.cs
- AudioDeviceOut.cs
- VisualStyleElement.cs
- UnmanagedBitmapWrapper.cs
- PersistenceTypeAttribute.cs
- DataGridViewControlCollection.cs
- GregorianCalendarHelper.cs
- ElementMarkupObject.cs
- WebResourceAttribute.cs
- BStrWrapper.cs
- HasCopySemanticsAttribute.cs
- RectIndependentAnimationStorage.cs
- IconHelper.cs
- InputReportEventArgs.cs
- CompilerResults.cs
- DataListComponentEditor.cs
- RewritingPass.cs
- EntityStoreSchemaGenerator.cs
- MatrixCamera.cs
- PerfService.cs
- DataSourceProvider.cs
- Events.cs
- _LocalDataStore.cs
- RIPEMD160.cs
- TreeBuilderXamlTranslator.cs
- templategroup.cs
- Transform3D.cs
- FormView.cs
- HuffmanTree.cs
- TabControlCancelEvent.cs
- DateTimeOffsetStorage.cs
- UpDownEvent.cs
- dataprotectionpermissionattribute.cs
- SettingsProperty.cs
- ManagedWndProcTracker.cs
- documentation.cs
- Models.cs
- TextEffect.cs
- KeyboardNavigation.cs
- XsdSchemaFileEditor.cs
- HttpModuleAction.cs
- SchemaSetCompiler.cs
- Stroke2.cs
- LicenseProviderAttribute.cs
- CodeCompileUnit.cs
- OLEDB_Util.cs
- DelegatedStream.cs
- DesignerActionUIStateChangeEventArgs.cs
- SystemDropShadowChrome.cs
- TableCell.cs
- CodeCatchClauseCollection.cs
- SecurityException.cs
- DoubleUtil.cs
- ResourceDisplayNameAttribute.cs
- BrowserCapabilitiesCompiler.cs
- ReadOnlyCollectionBuilder.cs
- Splitter.cs
- DesignObjectWrapper.cs
- RoleManagerModule.cs
- EditingScope.cs
- Vector3D.cs
- DES.cs
- WindowsTokenRoleProvider.cs
- RuntimeResourceSet.cs
- XsltSettings.cs
- XmlSchemaObject.cs
- ClientUtils.cs
- SafeNativeMethods.cs
- UserControlDocumentDesigner.cs
- ItemDragEvent.cs
- ThemeDictionaryExtension.cs