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
- DetailsViewDesigner.cs
- HttpListenerPrefixCollection.cs
- ColumnMapProcessor.cs
- ToolStripKeyboardHandlingService.cs
- InvalidDocumentContentsException.cs
- SelectionGlyph.cs
- PropertyRef.cs
- DeleteHelper.cs
- Rights.cs
- TrackBar.cs
- ProcessModelSection.cs
- PathBox.cs
- QilDataSource.cs
- Application.cs
- infer.cs
- Exception.cs
- DefaultValidator.cs
- GC.cs
- AsyncPostBackTrigger.cs
- XmlSchemaSimpleTypeRestriction.cs
- KeyConverter.cs
- NameValueFileSectionHandler.cs
- FixedSOMTableRow.cs
- QueryLifecycle.cs
- ConnectionInterfaceCollection.cs
- wgx_commands.cs
- DirectionalLight.cs
- FillRuleValidation.cs
- MatrixStack.cs
- MissingMethodException.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- ISO2022Encoding.cs
- Misc.cs
- MetaType.cs
- EdgeModeValidation.cs
- DbMetaDataColumnNames.cs
- ScriptRegistrationManager.cs
- SourceFilter.cs
- CodePageEncoding.cs
- HttpRequestTraceRecord.cs
- DetailsViewUpdatedEventArgs.cs
- Attributes.cs
- Misc.cs
- GenericEnumerator.cs
- SiteMapProvider.cs
- DoubleCollectionConverter.cs
- DataObjectSettingDataEventArgs.cs
- DesignerForm.cs
- TextBreakpoint.cs
- XmlCDATASection.cs
- HttpInputStream.cs
- WindowsImpersonationContext.cs
- PropertyGroupDescription.cs
- ParseHttpDate.cs
- DataObject.cs
- EventEntry.cs
- ExtendedTransformFactory.cs
- UserControlParser.cs
- ThumbAutomationPeer.cs
- HtmlTextArea.cs
- ListViewTableCell.cs
- HtmlShimManager.cs
- RegexWorker.cs
- HttpHandlerAction.cs
- BounceEase.cs
- LoginViewDesigner.cs
- AggregateNode.cs
- XmlSchemaImport.cs
- MimeMapping.cs
- CheckPair.cs
- PolicyStatement.cs
- AtomPub10ServiceDocumentFormatter.cs
- WebPartAddingEventArgs.cs
- WebPartConnectionsCancelVerb.cs
- ReadOnlyCollectionBase.cs
- ObjectContextServiceProvider.cs
- ThreadAbortException.cs
- SerialStream.cs
- DeflateEmulationStream.cs
- SuppressMessageAttribute.cs
- StylusPointPropertyUnit.cs
- Byte.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- GetWinFXPath.cs
- DataRowCollection.cs
- DataIdProcessor.cs
- XPathMessageFilter.cs
- CmsInterop.cs
- WebEventCodes.cs
- PipelineModuleStepContainer.cs
- ListViewAutomationPeer.cs
- TextEditorCharacters.cs
- DbReferenceCollection.cs
- TextMarkerSource.cs
- BitmapEffectDrawingContent.cs
- UpdateManifestForBrowserApplication.cs
- MetadataSource.cs
- FtpWebRequest.cs
- PageClientProxyGenerator.cs
- UserControlCodeDomTreeGenerator.cs