Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / Design / Serialization / ResolveNameEventArgs.cs / 1 / 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataGridLinkButton.cs
- MemberAccessException.cs
- HtmlTableRowCollection.cs
- ISAPIWorkerRequest.cs
- InternalConfigSettingsFactory.cs
- Quaternion.cs
- Matrix3DStack.cs
- FormsAuthentication.cs
- PolyBezierSegment.cs
- EmbeddedMailObjectCollectionEditor.cs
- IndentedTextWriter.cs
- IpcChannel.cs
- DataListCommandEventArgs.cs
- FlowDocumentScrollViewerAutomationPeer.cs
- DrawingImage.cs
- DataReaderContainer.cs
- SafeRightsManagementPubHandle.cs
- CheckPair.cs
- TreeNodeStyleCollection.cs
- Image.cs
- PreservationFileWriter.cs
- PerformanceCounterPermission.cs
- StringComparer.cs
- CompilerState.cs
- PageClientProxyGenerator.cs
- TextTabProperties.cs
- DurableEnlistmentState.cs
- DataServicePagingProviderWrapper.cs
- GridViewRowCollection.cs
- NeutralResourcesLanguageAttribute.cs
- TextSchema.cs
- XmlSchemaComplexContent.cs
- ProxyAttribute.cs
- Domain.cs
- ToolStripMenuItem.cs
- DesignerDataConnection.cs
- WindowsAuthenticationEventArgs.cs
- Interlocked.cs
- UrlUtility.cs
- CollectionViewGroup.cs
- PrimitiveXmlSerializers.cs
- ContainerUtilities.cs
- InkPresenterAutomationPeer.cs
- HTMLTextWriter.cs
- ComponentChangingEvent.cs
- BitmapImage.cs
- RegexRunner.cs
- Main.cs
- assemblycache.cs
- RadioButton.cs
- SqlRemoveConstantOrderBy.cs
- SecurityUtils.cs
- BaseInfoTable.cs
- MessageQueue.cs
- SqlParameter.cs
- FileDialog.cs
- RegexCapture.cs
- COM2Enum.cs
- WebConfigurationHostFileChange.cs
- TransformDescriptor.cs
- ActivationServices.cs
- XamlSerializerUtil.cs
- Privilege.cs
- _ContextAwareResult.cs
- CapabilitiesAssignment.cs
- DockingAttribute.cs
- PrimarySelectionAdorner.cs
- DateTimeParse.cs
- BitVec.cs
- PermissionSetTriple.cs
- BoolLiteral.cs
- RegexNode.cs
- TraceSource.cs
- FileDetails.cs
- TreeNodeCollection.cs
- PageCatalogPart.cs
- InvokeGenerator.cs
- FontInfo.cs
- KeyPressEvent.cs
- BitmapFrame.cs
- VerificationException.cs
- PointCollectionConverter.cs
- XamlReaderConstants.cs
- wpf-etw.cs
- StylusSystemGestureEventArgs.cs
- WeakEventManager.cs
- TextView.cs
- TextServicesDisplayAttribute.cs
- XmlTextAttribute.cs
- StringSource.cs
- PatternMatcher.cs
- WebResourceUtil.cs
- DataException.cs
- ScriptHandlerFactory.cs
- SetterBase.cs
- MissingManifestResourceException.cs
- Translator.cs
- ListViewUpdateEventArgs.cs
- RelatedCurrencyManager.cs
- PieceDirectory.cs