Code:
/ FX-1434 / FX-1434 / 1.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
- CriticalExceptions.cs
- SamlEvidence.cs
- DateTimeConverter.cs
- CellTreeNode.cs
- StylusPointCollection.cs
- HtmlInputHidden.cs
- ContextBase.cs
- StylusEventArgs.cs
- FormsAuthenticationUser.cs
- CompatibleComparer.cs
- WindowsEditBoxRange.cs
- WebPartMenuStyle.cs
- DateTimePicker.cs
- ListItemsPage.cs
- StructuralType.cs
- ProbeMatchesCD1.cs
- SendReply.cs
- MembershipUser.cs
- WebPartTransformer.cs
- SqlLiftIndependentRowExpressions.cs
- CacheMode.cs
- DataListItemEventArgs.cs
- SafeRegistryHandle.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- DataSourceSelectArguments.cs
- SynchronousChannelMergeEnumerator.cs
- ManipulationPivot.cs
- SemanticTag.cs
- OverrideMode.cs
- CompensationDesigner.cs
- ContainerParagraph.cs
- HtmlInputSubmit.cs
- HtmlTableRow.cs
- XNameConverter.cs
- WebBrowserUriTypeConverter.cs
- FieldCollectionEditor.cs
- Method.cs
- TypeLoadException.cs
- ExtendedProperty.cs
- MethodCallExpression.cs
- ToolboxItem.cs
- Control.cs
- ImageAttributes.cs
- ProfileModule.cs
- ToolboxService.cs
- ListBindingHelper.cs
- SqlDataSource.cs
- SQLInt64Storage.cs
- HttpApplicationFactory.cs
- HierarchicalDataTemplate.cs
- XmlSchema.cs
- UIPermission.cs
- ISFTagAndGuidCache.cs
- WebPartEditVerb.cs
- Animatable.cs
- LifetimeMonitor.cs
- Error.cs
- ProtectedConfiguration.cs
- PropertyAccessVisitor.cs
- HtmlControl.cs
- OdbcConnection.cs
- SuppressIldasmAttribute.cs
- ScriptingRoleServiceSection.cs
- ColumnMapVisitor.cs
- WriteableBitmap.cs
- oledbmetadatacolumnnames.cs
- ProfessionalColors.cs
- sqlnorm.cs
- AssemblyUtil.cs
- MouseGestureConverter.cs
- ByteAnimationUsingKeyFrames.cs
- WebConfigurationManager.cs
- ElementFactory.cs
- NullableDoubleSumAggregationOperator.cs
- DataServices.cs
- InternalConfigEventArgs.cs
- StringToken.cs
- ListViewGroupItemCollection.cs
- ScrollViewerAutomationPeer.cs
- RedirectionProxy.cs
- SerializationAttributes.cs
- Transform.cs
- AppDomainAttributes.cs
- RawStylusInputReport.cs
- XmlQueryContext.cs
- DbCommandTree.cs
- CustomValidator.cs
- DragDrop.cs
- ExceptionHelpers.cs
- DataGridViewCellFormattingEventArgs.cs
- RangeValidator.cs
- ArgumentException.cs
- UriScheme.cs
- IPPacketInformation.cs
- UserControlBuildProvider.cs
- WebPart.cs
- TypeRefElement.cs
- SEHException.cs
- DbModificationCommandTree.cs
- XamlFigureLengthSerializer.cs