Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / ComponentModel / MarshalByValueComponent.cs / 1 / MarshalByValueComponent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System; using System.ComponentModel.Design; using System.Diagnostics.CodeAnalysis; using System.Security.Permissions; using System.Runtime.InteropServices; ////// [ ComVisible(true), Designer("System.Windows.Forms.Design.ComponentDocumentDesigner, " + AssemblyRef.SystemDesign, typeof(IRootDesigner)), DesignerCategory("Component"), TypeConverter(typeof(ComponentConverter)) ] public class MarshalByValueComponent : IComponent, IServiceProvider { ///Provides the base implementation for ///, /// which is the base class for all components in Win Forms. /// private static readonly object EventDisposed = new object(); private ISite site; private EventHandlerList events; ///Static hask key for the Disposed event. This field is read-only. ////// public MarshalByValueComponent() { } ~MarshalByValueComponent() { Dispose(false); } ///Initializes a new instance of the ///class. /// public event EventHandler Disposed { add { Events.AddHandler(EventDisposed, value); } remove { Events.RemoveHandler(EventDisposed, value); } } ///Adds a event handler to listen to the Disposed event on the component. ////// protected EventHandlerList Events { get { if (events == null) { events = new EventHandlerList(); } return events; } } ///Gets the list of event handlers that are attached to this component. ////// [Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public virtual ISite Site { get { return site;} set { site = value;} } ///Gets or sets the site of the component. ////// [SuppressMessage("Microsoft.Usage", "CA2213:DisposableFieldsShouldBeDisposed")] public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } ///Disposes of the resources (other than memory) used by the component. ////// protected virtual void Dispose(bool disposing) { if (disposing) { lock(this) { if (site != null && site.Container != null) { site.Container.Remove(this); } if (events != null) { EventHandler handler = (EventHandler)events[EventDisposed]; if (handler != null) handler(this, EventArgs.Empty); } } } } ////// Disposes all the resources associated with this component. /// If disposing is false then you must never touch any other /// managed objects, as they may already be finalized. When /// in this state you should dispose any native resources /// that you have a reference to. /// ////// When disposing is true then you should dispose all data /// and objects you have references to. The normal implementation /// of this method would look something like: /// ////// public void Dispose() { /// Dispose(true); /// GC.SuppressFinalize(this); /// } /// /// protected virtual void Dispose(bool disposing) { /// if (disposing) { /// if (myobject != null) { /// myobject.Dispose(); /// myobject = null; /// } /// } /// if (myhandle != IntPtr.Zero) { /// NativeMethods.Release(myhandle); /// myhandle = IntPtr.Zero; /// } /// } /// /// ~MyClass() { /// Dispose(false); /// } ///
////// For base classes, you should never override the Finalier (~Class in C#) /// or the Dispose method that takes no arguments, rather you should /// always override the Dispose method that takes a bool. /// ////// protected override void Dispose(bool disposing) { /// if (disposing) { /// if (myobject != null) { /// myobject.Dispose(); /// myobject = null; /// } /// } /// if (myhandle != IntPtr.Zero) { /// NativeMethods.Release(myhandle); /// myhandle = IntPtr.Zero; /// } /// base.Dispose(disposing); /// } ///
////// [Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public virtual IContainer Container { get { ISite s = site; return s == null ? null : s.Container; } } ///Gets the container for the component. ////// public virtual object GetService(Type service) { return((site==null)? null : site.GetService(service)); } ///Gets the implementer of the ///. /// [Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public virtual bool DesignMode { get { ISite s = site; return(s == null) ? false : s.DesignMode; } } ///Gets a value indicating whether the component is currently in design mode. ////// /// public override String ToString() { ISite s = site; if (s != null) return s.Name + " [" + GetType().FullName + "]"; else return GetType().FullName; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Returns a ///containing the name of the , if any. This method should not be /// overridden. For /// internal use only. /// // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System; using System.ComponentModel.Design; using System.Diagnostics.CodeAnalysis; using System.Security.Permissions; using System.Runtime.InteropServices; ////// [ ComVisible(true), Designer("System.Windows.Forms.Design.ComponentDocumentDesigner, " + AssemblyRef.SystemDesign, typeof(IRootDesigner)), DesignerCategory("Component"), TypeConverter(typeof(ComponentConverter)) ] public class MarshalByValueComponent : IComponent, IServiceProvider { ///Provides the base implementation for ///, /// which is the base class for all components in Win Forms. /// private static readonly object EventDisposed = new object(); private ISite site; private EventHandlerList events; ///Static hask key for the Disposed event. This field is read-only. ////// public MarshalByValueComponent() { } ~MarshalByValueComponent() { Dispose(false); } ///Initializes a new instance of the ///class. /// public event EventHandler Disposed { add { Events.AddHandler(EventDisposed, value); } remove { Events.RemoveHandler(EventDisposed, value); } } ///Adds a event handler to listen to the Disposed event on the component. ////// protected EventHandlerList Events { get { if (events == null) { events = new EventHandlerList(); } return events; } } ///Gets the list of event handlers that are attached to this component. ////// [Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public virtual ISite Site { get { return site;} set { site = value;} } ///Gets or sets the site of the component. ////// [SuppressMessage("Microsoft.Usage", "CA2213:DisposableFieldsShouldBeDisposed")] public void Dispose() { Dispose(true); GC.SuppressFinalize(this); } ///Disposes of the resources (other than memory) used by the component. ////// protected virtual void Dispose(bool disposing) { if (disposing) { lock(this) { if (site != null && site.Container != null) { site.Container.Remove(this); } if (events != null) { EventHandler handler = (EventHandler)events[EventDisposed]; if (handler != null) handler(this, EventArgs.Empty); } } } } ////// Disposes all the resources associated with this component. /// If disposing is false then you must never touch any other /// managed objects, as they may already be finalized. When /// in this state you should dispose any native resources /// that you have a reference to. /// ////// When disposing is true then you should dispose all data /// and objects you have references to. The normal implementation /// of this method would look something like: /// ////// public void Dispose() { /// Dispose(true); /// GC.SuppressFinalize(this); /// } /// /// protected virtual void Dispose(bool disposing) { /// if (disposing) { /// if (myobject != null) { /// myobject.Dispose(); /// myobject = null; /// } /// } /// if (myhandle != IntPtr.Zero) { /// NativeMethods.Release(myhandle); /// myhandle = IntPtr.Zero; /// } /// } /// /// ~MyClass() { /// Dispose(false); /// } ///
////// For base classes, you should never override the Finalier (~Class in C#) /// or the Dispose method that takes no arguments, rather you should /// always override the Dispose method that takes a bool. /// ////// protected override void Dispose(bool disposing) { /// if (disposing) { /// if (myobject != null) { /// myobject.Dispose(); /// myobject = null; /// } /// } /// if (myhandle != IntPtr.Zero) { /// NativeMethods.Release(myhandle); /// myhandle = IntPtr.Zero; /// } /// base.Dispose(disposing); /// } ///
////// [Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public virtual IContainer Container { get { ISite s = site; return s == null ? null : s.Container; } } ///Gets the container for the component. ////// public virtual object GetService(Type service) { return((site==null)? null : site.GetService(service)); } ///Gets the implementer of the ///. /// [Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public virtual bool DesignMode { get { ISite s = site; return(s == null) ? false : s.DesignMode; } } ///Gets a value indicating whether the component is currently in design mode. ////// /// public override String ToString() { ISite s = site; if (s != null) return s.Name + " [" + GetType().FullName + "]"; else return GetType().FullName; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Returns a ///containing the name of the , if any. This method should not be /// overridden. For /// internal use only. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- mediaeventshelper.cs
- PermissionSetEnumerator.cs
- IntegerValidatorAttribute.cs
- XmlSchemaSimpleType.cs
- TableLayoutPanel.cs
- MediaElement.cs
- EncoderParameters.cs
- ChannelSinkStacks.cs
- SelectionItemPattern.cs
- Debugger.cs
- SendKeys.cs
- EventLogPermissionEntryCollection.cs
- TextRunCache.cs
- PageStatePersister.cs
- IChannel.cs
- InvalidCommandTreeException.cs
- EncoderParameters.cs
- Compilation.cs
- EntityContainerRelationshipSetEnd.cs
- WebResponse.cs
- DataSourceGroupCollection.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- SupportingTokenProviderSpecification.cs
- Attachment.cs
- login.cs
- CodeTypeParameterCollection.cs
- QuarticEase.cs
- AutomationPatternInfo.cs
- RTLAwareMessageBox.cs
- PreservationFileWriter.cs
- MediaContextNotificationWindow.cs
- PrefixQName.cs
- SchemaSetCompiler.cs
- FamilyCollection.cs
- ConversionHelper.cs
- MachineSettingsSection.cs
- NameValueFileSectionHandler.cs
- CodeCommentStatementCollection.cs
- TextEditorSelection.cs
- COM2AboutBoxPropertyDescriptor.cs
- OverflowException.cs
- PrintDialogException.cs
- FileSystemWatcher.cs
- SHA512Cng.cs
- FrugalList.cs
- Events.cs
- QilScopedVisitor.cs
- WindowsScrollBarBits.cs
- ViewManager.cs
- SafeFileMappingHandle.cs
- Intellisense.cs
- BamlRecordHelper.cs
- TemplateControlCodeDomTreeGenerator.cs
- DataSysAttribute.cs
- WSFederationHttpBinding.cs
- CodeTypeReferenceExpression.cs
- SiteMapDataSourceView.cs
- ProcessThread.cs
- OleDbReferenceCollection.cs
- PrintEvent.cs
- UrlUtility.cs
- AssemblyBuilderData.cs
- MulticastDelegate.cs
- XmlSchemaComplexContentExtension.cs
- RelatedCurrencyManager.cs
- SizeConverter.cs
- EventOpcode.cs
- ScriptComponentDescriptor.cs
- Menu.cs
- EntityDataSourceDataSelection.cs
- PathSegmentCollection.cs
- FixedSOMTableCell.cs
- SkipQueryOptionExpression.cs
- SiteMapNodeCollection.cs
- MatrixAnimationUsingPath.cs
- UnconditionalPolicy.cs
- GeometryGroup.cs
- ToolboxComponentsCreatedEventArgs.cs
- Ports.cs
- ParameterCollectionEditor.cs
- PerformanceCounter.cs
- NativeMethods.cs
- _CacheStreams.cs
- PropertyGeneratedEventArgs.cs
- ObjectSet.cs
- NavigatorOutput.cs
- SiteOfOriginContainer.cs
- PackWebRequestFactory.cs
- XamlTypeMapper.cs
- wgx_exports.cs
- WsiProfilesElement.cs
- SeekStoryboard.cs
- HandledMouseEvent.cs
- GridItemProviderWrapper.cs
- HtmlControlAdapter.cs
- ExpressionBuilder.cs
- XmlCodeExporter.cs
- SQLBoolean.cs
- PathFigureCollectionConverter.cs
- XmlMapping.cs