Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- XmlILOptimizerVisitor.cs
- WindowsScroll.cs
- Rules.cs
- ObjectDataSourceView.cs
- EntityTypeBase.cs
- SqlXml.cs
- GorillaCodec.cs
- XmlRootAttribute.cs
- COM2FontConverter.cs
- AutomationElementCollection.cs
- sqlnorm.cs
- DirectoryObjectSecurity.cs
- DeviceContexts.cs
- NumericUpDown.cs
- ListBoxChrome.cs
- Char.cs
- WCFServiceClientProxyGenerator.cs
- XmlSchemaComplexContentRestriction.cs
- ColumnMapProcessor.cs
- SrgsElementFactoryCompiler.cs
- NotSupportedException.cs
- CryptoKeySecurity.cs
- tooltip.cs
- _DigestClient.cs
- StaticSiteMapProvider.cs
- XslException.cs
- PictureBox.cs
- XmlSchemaAll.cs
- BamlMapTable.cs
- UrlPath.cs
- ConfigurationManager.cs
- ProgramNode.cs
- VariableQuery.cs
- DispatcherSynchronizationContext.cs
- DefaultValueAttribute.cs
- Path.cs
- HierarchicalDataSourceControl.cs
- DrawingContext.cs
- ButtonStandardAdapter.cs
- SmtpAuthenticationManager.cs
- DesignTimeSiteMapProvider.cs
- ListChunk.cs
- HttpApplicationFactory.cs
- ExpandableObjectConverter.cs
- HttpContextBase.cs
- XmlBinaryReader.cs
- Line.cs
- EntityDataSourceDesignerHelper.cs
- IImplicitResourceProvider.cs
- WebPartZoneDesigner.cs
- Content.cs
- NullRuntimeConfig.cs
- ListControlDesigner.cs
- DesignerForm.cs
- BamlLocalizabilityResolver.cs
- AttributeEmitter.cs
- PackageDigitalSignatureManager.cs
- ListViewCommandEventArgs.cs
- DependencyPropertyValueSerializer.cs
- SwitchLevelAttribute.cs
- FrameworkContentElementAutomationPeer.cs
- PackWebRequestFactory.cs
- ReadOnlyHierarchicalDataSource.cs
- SByte.cs
- RegexParser.cs
- DropShadowBitmapEffect.cs
- RootBuilder.cs
- CustomTrackingQuery.cs
- PartitionerStatic.cs
- System.Data_BID.cs
- X509CertificateClaimSet.cs
- SerialStream.cs
- SqlProvider.cs
- Sentence.cs
- _NegoState.cs
- SerializerDescriptor.cs
- ActivationArguments.cs
- WorkBatch.cs
- DataGridViewLayoutData.cs
- InlinedAggregationOperatorEnumerator.cs
- Int32Collection.cs
- SystemParameters.cs
- HierarchicalDataBoundControlAdapter.cs
- DataColumnMapping.cs
- OracleConnectionStringBuilder.cs
- PageWrapper.cs
- ProviderIncompatibleException.cs
- Utilities.cs
- DocumentEventArgs.cs
- CheckBox.cs
- ReflectTypeDescriptionProvider.cs
- DataGridColumnDropSeparator.cs
- RecordManager.cs
- DnsEndpointIdentity.cs
- TransactionManager.cs
- CssClassPropertyAttribute.cs
- SwitchCase.cs
- ThreadAbortException.cs
- IISMapPath.cs
- TextDecorationCollection.cs