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
- FilteredReadOnlyMetadataCollection.cs
- SoapTypeAttribute.cs
- EntityViewGenerator.cs
- ObjectTag.cs
- CleanUpVirtualizedItemEventArgs.cs
- DeferredRunTextReference.cs
- NameNode.cs
- BrowserDefinition.cs
- Compress.cs
- ConfigurationStrings.cs
- ArcSegment.cs
- RemoveStoryboard.cs
- QueryRewriter.cs
- NullExtension.cs
- FormsAuthenticationUser.cs
- CodeStatementCollection.cs
- propertytag.cs
- ShaperBuffers.cs
- ObjectIDGenerator.cs
- StatusBarPanel.cs
- GradientStopCollection.cs
- MarkupProperty.cs
- PatternMatcher.cs
- ListViewItemMouseHoverEvent.cs
- PropertyInfoSet.cs
- TokenizerHelper.cs
- BitmapEffectDrawingContextState.cs
- SystemInfo.cs
- SplashScreen.cs
- SystemIPAddressInformation.cs
- EventWaitHandle.cs
- Emitter.cs
- ObjectDataSourceSelectingEventArgs.cs
- UnsafeNativeMethods.cs
- EntityViewGenerationAttribute.cs
- TreeNodeBindingCollection.cs
- Selection.cs
- NavigationWindowAutomationPeer.cs
- ListSortDescription.cs
- DependencyPropertyAttribute.cs
- HotCommands.cs
- ResourceDisplayNameAttribute.cs
- BStrWrapper.cs
- SwitchLevelAttribute.cs
- Events.cs
- CryptoApi.cs
- WMIGenerator.cs
- ManagementClass.cs
- XmlNavigatorStack.cs
- HtmlInputImage.cs
- XPathNodeHelper.cs
- DataServiceBuildProvider.cs
- InvalidateEvent.cs
- InputLanguage.cs
- DockProviderWrapper.cs
- MetabaseServerConfig.cs
- DataGridViewRow.cs
- WorkflowDispatchContext.cs
- InputElement.cs
- WmlMobileTextWriter.cs
- EpmSyndicationContentSerializer.cs
- StylusPlugin.cs
- XPathSelectionIterator.cs
- ExtensionFile.cs
- NamespaceList.cs
- InvalidAsynchronousStateException.cs
- TextRange.cs
- odbcmetadatafactory.cs
- HttpApplication.cs
- StylusPlugin.cs
- GenericAuthenticationEventArgs.cs
- BinaryOperationBinder.cs
- CheckoutException.cs
- LoginName.cs
- StylusCaptureWithinProperty.cs
- Odbc32.cs
- DbConnectionPoolGroup.cs
- DefaultPrintController.cs
- MetaModel.cs
- Profiler.cs
- SimpleExpression.cs
- LookupNode.cs
- ProfessionalColorTable.cs
- SizeKeyFrameCollection.cs
- DeobfuscatingStream.cs
- AuthenticationSection.cs
- _UriTypeConverter.cs
- PagerSettings.cs
- MaskedTextBoxTextEditor.cs
- DataViewSettingCollection.cs
- DelegateSerializationHolder.cs
- ManagedWndProcTracker.cs
- CustomBindingElement.cs
- CellParaClient.cs
- SaveFileDialog.cs
- DragEventArgs.cs
- TextRunProperties.cs
- NavigatingCancelEventArgs.cs
- StringValueConverter.cs
- TextAnchor.cs