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
- DesignParameter.cs
- EventLogPermissionEntryCollection.cs
- WebPartVerb.cs
- DrawingServices.cs
- CngProperty.cs
- UriTemplateClientFormatter.cs
- FastPropertyAccessor.cs
- ErrorHandler.cs
- SamlAction.cs
- MultiPageTextView.cs
- TableParaClient.cs
- UInt16.cs
- FormatVersion.cs
- XmlSignatureManifest.cs
- ProviderMetadataCachedInformation.cs
- ListDataHelper.cs
- ProtocolsConfiguration.cs
- uribuilder.cs
- ReadOnlyDataSource.cs
- ToolStripRenderEventArgs.cs
- XamlVector3DCollectionSerializer.cs
- LogicalExpressionTypeConverter.cs
- WindowsClientElement.cs
- AsyncCompletedEventArgs.cs
- TypeSystem.cs
- AnnotationObservableCollection.cs
- MetadataSource.cs
- PersonalizationEntry.cs
- CompilerTypeWithParams.cs
- Peer.cs
- LongValidatorAttribute.cs
- WebControlParameterProxy.cs
- MediaPlayer.cs
- DataGridViewLinkCell.cs
- SmtpSection.cs
- WebPartConnectVerb.cs
- Metafile.cs
- CustomCredentialPolicy.cs
- SymbolTable.cs
- Material.cs
- ControlOperationInvoker.cs
- ObjectStateManagerMetadata.cs
- FilterableAttribute.cs
- HtmlInputButton.cs
- DetailsViewDeletedEventArgs.cs
- DetailsViewInsertEventArgs.cs
- SqlDesignerDataSourceView.cs
- TextRange.cs
- AspNetHostingPermission.cs
- CultureNotFoundException.cs
- ServiceDescriptionData.cs
- BrowserCapabilitiesFactory35.cs
- GeometryHitTestResult.cs
- RegularExpressionValidator.cs
- WebFormsRootDesigner.cs
- XPathDocument.cs
- PrintController.cs
- CmsInterop.cs
- DependencyPropertyValueSerializer.cs
- CapiHashAlgorithm.cs
- ExpressionVisitorHelpers.cs
- AddInContractAttribute.cs
- SafeWaitHandle.cs
- ContentPresenter.cs
- ComponentCodeDomSerializer.cs
- Single.cs
- ClientType.cs
- WasAdminWrapper.cs
- ProcessRequestArgs.cs
- EditorPartChrome.cs
- RegexParser.cs
- InteropDesigner.xaml.cs
- Equal.cs
- ListViewContainer.cs
- PrimitiveDataContract.cs
- SynchronizationLockException.cs
- HttpListenerPrefixCollection.cs
- Variant.cs
- RadioButtonRenderer.cs
- NumericUpDown.cs
- securestring.cs
- InternalTransaction.cs
- XmlEntity.cs
- List.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- SpeechEvent.cs
- TreeNodeStyleCollection.cs
- SelectionProcessor.cs
- MsmqChannelListenerBase.cs
- RankException.cs
- ParserContext.cs
- DataService.cs
- compensatingcollection.cs
- ButtonBaseAdapter.cs
- ImageIndexConverter.cs
- EndPoint.cs
- MarkupCompiler.cs
- AssemblyBuilderData.cs
- CallbackException.cs
- Win32PrintDialog.cs