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
- _NTAuthentication.cs
- ChtmlTextWriter.cs
- BamlResourceDeserializer.cs
- DataSourceDesigner.cs
- SocketElement.cs
- DescendentsWalker.cs
- RawStylusActions.cs
- XmlQueryOutput.cs
- SystemUnicastIPAddressInformation.cs
- CdpEqualityComparer.cs
- DispatcherSynchronizationContext.cs
- EncoderParameters.cs
- Imaging.cs
- ExtendedProtectionPolicyElement.cs
- SparseMemoryStream.cs
- Win32MouseDevice.cs
- StyleSheet.cs
- SpeechSynthesizer.cs
- UnsafeNativeMethods.cs
- PathSegment.cs
- MailAddressParser.cs
- XmlEnumAttribute.cs
- DataGridViewImageColumn.cs
- CollectionExtensions.cs
- XmlBinaryReader.cs
- PersistenceException.cs
- PropertyItem.cs
- WebPartConnectVerb.cs
- CqlLexerHelpers.cs
- XmlObjectSerializerReadContextComplexJson.cs
- ItemContainerGenerator.cs
- RouteValueExpressionBuilder.cs
- BitmapEffectInput.cs
- ToolTipService.cs
- SingleTagSectionHandler.cs
- StringStorage.cs
- Logging.cs
- PtsContext.cs
- GeometryCombineModeValidation.cs
- StringConcat.cs
- QueryStringParameter.cs
- WmlLabelAdapter.cs
- DataBindingCollection.cs
- BindToObject.cs
- SettingsPropertyCollection.cs
- XmlnsCache.cs
- DbProviderFactory.cs
- HtmlInputRadioButton.cs
- MediaContext.cs
- ModelService.cs
- XPathSelectionIterator.cs
- StringUtil.cs
- XmlDictionaryWriter.cs
- Pens.cs
- ChildrenQuery.cs
- StyleReferenceConverter.cs
- DbMetaDataColumnNames.cs
- SqlCaseSimplifier.cs
- UiaCoreApi.cs
- ExplicitDiscriminatorMap.cs
- HtmlElementErrorEventArgs.cs
- AppDomainInfo.cs
- ChtmlPageAdapter.cs
- DocumentPageView.cs
- DbConnectionPoolIdentity.cs
- ScriptReference.cs
- RegexRunnerFactory.cs
- ColorAnimation.cs
- ImageMap.cs
- Mapping.cs
- DataBindingsDialog.cs
- SerializerProvider.cs
- KerberosRequestorSecurityToken.cs
- ClientSponsor.cs
- StopStoryboard.cs
- DocumentViewerBaseAutomationPeer.cs
- SyncMethodInvoker.cs
- SystemTcpConnection.cs
- AnnotationComponentChooser.cs
- WindowsSidIdentity.cs
- TableItemStyle.cs
- DbParameterCollection.cs
- PageOrientation.cs
- FontNameEditor.cs
- GradientBrush.cs
- PropertyChangedEventManager.cs
- ChildrenQuery.cs
- TextEditorCharacters.cs
- WaitHandleCannotBeOpenedException.cs
- ChannelFactoryBase.cs
- XmlSchemaRedefine.cs
- SessionPageStatePersister.cs
- CharacterHit.cs
- DefaultHttpHandler.cs
- ScriptingProfileServiceSection.cs
- BrowserTree.cs
- JsonMessageEncoderFactory.cs
- Msec.cs
- CryptoApi.cs
- ExpressionBindings.cs