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
- AppSettingsExpressionEditor.cs
- Block.cs
- WebPartManager.cs
- RichTextBoxConstants.cs
- SkinBuilder.cs
- HitTestWithGeometryDrawingContextWalker.cs
- RotateTransform3D.cs
- FileDialogCustomPlacesCollection.cs
- WinEventHandler.cs
- FacetValueContainer.cs
- VirtualDirectoryMapping.cs
- Atom10FeedFormatter.cs
- FileDataSource.cs
- RangeBase.cs
- CharacterShapingProperties.cs
- XmlTextEncoder.cs
- Point4D.cs
- DataPagerFieldItem.cs
- ConfigXmlDocument.cs
- EnumType.cs
- FixedPageStructure.cs
- FixedSOMGroup.cs
- CodeCommentStatement.cs
- XamlStackWriter.cs
- PrivateFontCollection.cs
- DataControlButton.cs
- WebPartCancelEventArgs.cs
- ResourcesGenerator.cs
- PixelShader.cs
- AnimationStorage.cs
- File.cs
- RoleGroup.cs
- JournalEntryListConverter.cs
- RoleManagerEventArgs.cs
- TextBox.cs
- WebPartVerbCollection.cs
- ConfigurationSettings.cs
- SecurityElement.cs
- SourceFileInfo.cs
- Bezier.cs
- ContentTextAutomationPeer.cs
- EnumCodeDomSerializer.cs
- Pens.cs
- IdentitySection.cs
- CounterCreationDataCollection.cs
- ObjectStateManager.cs
- ParentControlDesigner.cs
- TextureBrush.cs
- WindowsIdentity.cs
- SQLInt64Storage.cs
- UInt16Converter.cs
- ColumnResizeUndoUnit.cs
- TraceEventCache.cs
- CapabilitiesUse.cs
- securestring.cs
- ADMembershipProvider.cs
- NativeMethods.cs
- HttpRequestCacheValidator.cs
- ColorInterpolationModeValidation.cs
- WebPartHelpVerb.cs
- COM2IPerPropertyBrowsingHandler.cs
- DefaultHttpHandler.cs
- FileDataSourceCache.cs
- PointF.cs
- PrivilegedConfigurationManager.cs
- StringValidatorAttribute.cs
- ClientSettingsProvider.cs
- MenuItem.cs
- MyContact.cs
- TextTreeRootNode.cs
- XamlTypeMapper.cs
- SqlLiftIndependentRowExpressions.cs
- DataGridViewTopRowAccessibleObject.cs
- UnicodeEncoding.cs
- AndMessageFilter.cs
- ProcessModuleDesigner.cs
- DocumentSchemaValidator.cs
- TreeNodeStyleCollection.cs
- AsymmetricAlgorithm.cs
- CompilationRelaxations.cs
- ItemsPresenter.cs
- ChtmlCalendarAdapter.cs
- TraceListener.cs
- MenuItemBinding.cs
- BaseEntityWrapper.cs
- Page.cs
- TextBox.cs
- CheckBox.cs
- ListViewItemCollectionEditor.cs
- InvokePatternIdentifiers.cs
- DataGridColumnDropSeparator.cs
- PersonalizableAttribute.cs
- WebPartVerbsEventArgs.cs
- HuffModule.cs
- FastEncoder.cs
- HwndSource.cs
- ResXResourceReader.cs
- WebScriptMetadataMessage.cs
- ExtendedProtectionPolicyTypeConverter.cs
- RoutingUtilities.cs