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
- TableRowCollection.cs
- Avt.cs
- ScalarConstant.cs
- RemotingSurrogateSelector.cs
- ScopedKnownTypes.cs
- DBAsyncResult.cs
- CrossAppDomainChannel.cs
- InputProcessorProfilesLoader.cs
- XmlFormatExtensionPrefixAttribute.cs
- SizeConverter.cs
- TreeSet.cs
- RelationshipFixer.cs
- CopyEncoder.cs
- storepermissionattribute.cs
- XmlHierarchicalEnumerable.cs
- BindingMemberInfo.cs
- LocalizationParserHooks.cs
- SecureStringHasher.cs
- MetadataItemEmitter.cs
- DispatcherEventArgs.cs
- ClientBuildManager.cs
- WindowsSysHeader.cs
- UniqueConstraint.cs
- QueryReaderSettings.cs
- XmlTextReaderImpl.cs
- SqlColumnizer.cs
- IndentedWriter.cs
- CharacterBufferReference.cs
- RegionData.cs
- SmiEventSink_Default.cs
- CultureTable.cs
- DataControlLinkButton.cs
- Stroke2.cs
- KeyedQueue.cs
- TextElementCollection.cs
- SynchronizedDispatch.cs
- FormParameter.cs
- MarkupCompiler.cs
- XmlSchemaImporter.cs
- WebPartConnectionsConfigureVerb.cs
- SafeNativeMethods.cs
- ActivityExecutionContext.cs
- XNodeValidator.cs
- HttpHeaderCollection.cs
- RefreshPropertiesAttribute.cs
- GridViewItemAutomationPeer.cs
- IIS7UserPrincipal.cs
- GroupAggregateExpr.cs
- DefaultTraceListener.cs
- Publisher.cs
- UICuesEvent.cs
- TraceRecord.cs
- RouteItem.cs
- InkSerializer.cs
- TextDecoration.cs
- Pen.cs
- OleDbCommandBuilder.cs
- ByteRangeDownloader.cs
- ISO2022Encoding.cs
- BindingSource.cs
- X509Utils.cs
- SQLCharsStorage.cs
- DefaultEventAttribute.cs
- LogEntryHeaderSerializer.cs
- EndpointInfo.cs
- DllNotFoundException.cs
- MatrixKeyFrameCollection.cs
- SourceFileBuildProvider.cs
- ConsoleEntryPoint.cs
- DataGridViewSelectedRowCollection.cs
- TimeoutTimer.cs
- LineProperties.cs
- HttpRequestTraceRecord.cs
- StylusOverProperty.cs
- PrintPreviewDialog.cs
- DataTableMappingCollection.cs
- HttpCacheVary.cs
- BindingContext.cs
- SiteMapNodeCollection.cs
- HotSpotCollectionEditor.cs
- MethodBuilder.cs
- dataSvcMapFileLoader.cs
- TextMarkerSource.cs
- RunInstallerAttribute.cs
- AppSecurityManager.cs
- OleDbInfoMessageEvent.cs
- SerializerDescriptor.cs
- PreDigestedSignedInfo.cs
- GuidTagList.cs
- SQLInt64Storage.cs
- CompatibleIComparer.cs
- SharedDp.cs
- BorderGapMaskConverter.cs
- GC.cs
- FormatConvertedBitmap.cs
- FtpWebResponse.cs
- AuthenticationConfig.cs
- InitializerFacet.cs
- EncodingInfo.cs
- GestureRecognitionResult.cs