Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Runtime / Remoting / ObjectHandle.cs / 1305376 / ObjectHandle.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: ObjectHandle ** ** ** ObjectHandle wraps object references. A Handle allows a ** marshal by value object to be returned through an ** indirection allowing the caller to control when the ** object is loaded into their domain. ** ** ===========================================================*/ namespace System.Runtime.Remoting{ using System; using System.Security.Permissions; using System.Runtime.InteropServices; using System.Runtime.Remoting; #if FEATURE_REMOTING using System.Runtime.Remoting.Activation; using System.Runtime.Remoting.Lifetime; #endif // We duplicate this type because we need to inherit from MarshalByRefObject iff FEATURE_REMOTING is // defined. It would be nice in the future to just wrap the class definition in an ifdef but right // now this causes problems with Thinner and causes it to generate invalid source. #if FEATURE_REMOTING [ClassInterface(ClassInterfaceType.AutoDual)] [System.Runtime.InteropServices.ComVisible(true)] public class ObjectHandle: MarshalByRefObject, IObjectHandle { private Object WrappedObject; private ObjectHandle() { } public ObjectHandle(Object o) { WrappedObject = o; } public Object Unwrap() { return WrappedObject; } // ObjectHandle has a finite lifetime. For now the default // lifetime is being used, this can be changed in this method to // specify a custom lifetime. #if FEATURE_REMOTING [System.Security.SecurityCritical] // auto-generated_required public override Object InitializeLifetimeService() { BCLDebug.Trace("REMOTE", "ObjectHandle.InitializeLifetimeService"); // // If the wrapped object has implemented InitializeLifetimeService to return null, // we don't want to go to the base class (which will result in a lease being // requested from the MarshalByRefObject, which starts up the LeaseManager, // which starts up the ThreadPool, adding three threads to the process. // We check if the wrapped object is a MarshalByRef object, and call InitializeLifetimeServices on it // and if it returns null, we return null. Otherwise we fall back to the old behavior. // MarshalByRefObject mbr = WrappedObject as MarshalByRefObject; if (mbr != null) { Object o = mbr.InitializeLifetimeService(); if (o == null) return null; } ILease lease = (ILease)base.InitializeLifetimeService(); return lease; } #endif // FEATURE_REMOTING } #else // !FEATURE_REMOTING [ClassInterface(ClassInterfaceType.AutoDual)] [System.Runtime.InteropServices.ComVisible(true)] public class ObjectHandle : IObjectHandle { private Object WrappedObject; private ObjectHandle() { } public ObjectHandle(Object o) { WrappedObject = o; } public Object Unwrap() { return WrappedObject; } #if FEATURE_REMOTING [System.Security.SecurityCritical] // auto-generated_required public override Object InitializeLifetimeService() { BCLDebug.Trace("REMOTE", "ObjectHandle.InitializeLifetimeService"); // // If the wrapped object has implemented InitializeLifetimeService to return null, // we don't want to go to the base class (which will result in a lease being // requested from the MarshalByRefObject, which starts up the LeaseManager, // which starts up the ThreadPool, adding three threads to the process. // We check if the wrapped object is a MarshalByRef object, and call InitializeLifetimeServices on it // and if it returns null, we return null. Otherwise we fall back to the old behavior. // MarshalByRefObject mbr = WrappedObject as MarshalByRefObject; if (mbr != null) { Object o = mbr.InitializeLifetimeService(); if (o == null) return null; } ILease lease = (ILease)base.InitializeLifetimeService(); return lease; } #endif // FEATURE_REMOTING } #endif // !FEATURE_REMOTING } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: ObjectHandle ** ** ** ObjectHandle wraps object references. A Handle allows a ** marshal by value object to be returned through an ** indirection allowing the caller to control when the ** object is loaded into their domain. ** ** ===========================================================*/ namespace System.Runtime.Remoting{ using System; using System.Security.Permissions; using System.Runtime.InteropServices; using System.Runtime.Remoting; #if FEATURE_REMOTING using System.Runtime.Remoting.Activation; using System.Runtime.Remoting.Lifetime; #endif // We duplicate this type because we need to inherit from MarshalByRefObject iff FEATURE_REMOTING is // defined. It would be nice in the future to just wrap the class definition in an ifdef but right // now this causes problems with Thinner and causes it to generate invalid source. #if FEATURE_REMOTING [ClassInterface(ClassInterfaceType.AutoDual)] [System.Runtime.InteropServices.ComVisible(true)] public class ObjectHandle: MarshalByRefObject, IObjectHandle { private Object WrappedObject; private ObjectHandle() { } public ObjectHandle(Object o) { WrappedObject = o; } public Object Unwrap() { return WrappedObject; } // ObjectHandle has a finite lifetime. For now the default // lifetime is being used, this can be changed in this method to // specify a custom lifetime. #if FEATURE_REMOTING [System.Security.SecurityCritical] // auto-generated_required public override Object InitializeLifetimeService() { BCLDebug.Trace("REMOTE", "ObjectHandle.InitializeLifetimeService"); // // If the wrapped object has implemented InitializeLifetimeService to return null, // we don't want to go to the base class (which will result in a lease being // requested from the MarshalByRefObject, which starts up the LeaseManager, // which starts up the ThreadPool, adding three threads to the process. // We check if the wrapped object is a MarshalByRef object, and call InitializeLifetimeServices on it // and if it returns null, we return null. Otherwise we fall back to the old behavior. // MarshalByRefObject mbr = WrappedObject as MarshalByRefObject; if (mbr != null) { Object o = mbr.InitializeLifetimeService(); if (o == null) return null; } ILease lease = (ILease)base.InitializeLifetimeService(); return lease; } #endif // FEATURE_REMOTING } #else // !FEATURE_REMOTING [ClassInterface(ClassInterfaceType.AutoDual)] [System.Runtime.InteropServices.ComVisible(true)] public class ObjectHandle : IObjectHandle { private Object WrappedObject; private ObjectHandle() { } public ObjectHandle(Object o) { WrappedObject = o; } public Object Unwrap() { return WrappedObject; } #if FEATURE_REMOTING [System.Security.SecurityCritical] // auto-generated_required public override Object InitializeLifetimeService() { BCLDebug.Trace("REMOTE", "ObjectHandle.InitializeLifetimeService"); // // If the wrapped object has implemented InitializeLifetimeService to return null, // we don't want to go to the base class (which will result in a lease being // requested from the MarshalByRefObject, which starts up the LeaseManager, // which starts up the ThreadPool, adding three threads to the process. // We check if the wrapped object is a MarshalByRef object, and call InitializeLifetimeServices on it // and if it returns null, we return null. Otherwise we fall back to the old behavior. // MarshalByRefObject mbr = WrappedObject as MarshalByRefObject; if (mbr != null) { Object o = mbr.InitializeLifetimeService(); if (o == null) return null; } ILease lease = (ILease)base.InitializeLifetimeService(); return lease; } #endif // FEATURE_REMOTING } #endif // !FEATURE_REMOTING } // 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
- HttpConfigurationContext.cs
- MbpInfo.cs
- ParenthesizePropertyNameAttribute.cs
- TextParagraphView.cs
- EnvironmentPermission.cs
- baseshape.cs
- IndexOutOfRangeException.cs
- StructureChangedEventArgs.cs
- SerializationInfo.cs
- StylusPointPropertyInfoDefaults.cs
- ServerType.cs
- StrongNameUtility.cs
- DigestComparer.cs
- BufferManager.cs
- Nullable.cs
- XmlSchemaObjectCollection.cs
- StrokeNodeData.cs
- ViewKeyConstraint.cs
- GroupDescription.cs
- TempFiles.cs
- DrawingAttributesDefaultValueFactory.cs
- unsafeIndexingFilterStream.cs
- HtmlMeta.cs
- DefaultValidator.cs
- ExpressionEditorAttribute.cs
- Attributes.cs
- WebPartActionVerb.cs
- LiteralControl.cs
- TextTreeObjectNode.cs
- XPathNavigator.cs
- DynamicResourceExtension.cs
- Contracts.cs
- KeyConverter.cs
- SubMenuStyleCollectionEditor.cs
- HTMLTagNameToTypeMapper.cs
- FrameSecurityDescriptor.cs
- CustomWebEventKey.cs
- MergablePropertyAttribute.cs
- PaperSource.cs
- ListViewItem.cs
- NumberFunctions.cs
- PageFunction.cs
- DataGridItemEventArgs.cs
- LogStore.cs
- UnsafeNativeMethods.cs
- StringAnimationBase.cs
- ImageMap.cs
- RoleBoolean.cs
- FlowDocumentPaginator.cs
- AtomParser.cs
- CustomMenuItemCollection.cs
- FreeFormDragDropManager.cs
- CommentAction.cs
- DependentTransaction.cs
- WebPartExportVerb.cs
- SystemResourceKey.cs
- RepeatInfo.cs
- BlobPersonalizationState.cs
- TreeNodeStyleCollection.cs
- TransactionOptions.cs
- HttpsHostedTransportConfiguration.cs
- TrackingStringDictionary.cs
- CompositeCollectionView.cs
- TreeNode.cs
- EntityDataSourceStatementEditor.cs
- relpropertyhelper.cs
- FileDialogPermission.cs
- DataRowView.cs
- Internal.cs
- TeredoHelper.cs
- BaseUriHelper.cs
- CheckedListBox.cs
- StorageAssociationTypeMapping.cs
- ThemeDirectoryCompiler.cs
- DataViewListener.cs
- QueryCacheEntry.cs
- AutoGeneratedFieldProperties.cs
- DefaultPropertyAttribute.cs
- StyleCollection.cs
- _IPv4Address.cs
- DecoderFallback.cs
- OleCmdHelper.cs
- DataGridColumn.cs
- TextSelectionHelper.cs
- InputChannelBinder.cs
- DynamicValidator.cs
- ParseElementCollection.cs
- IgnoreDataMemberAttribute.cs
- ProtocolsSection.cs
- ValueUtilsSmi.cs
- GenerateScriptTypeAttribute.cs
- Literal.cs
- FutureFactory.cs
- GridItemProviderWrapper.cs
- ConnectionManagementElementCollection.cs
- SqlDataReaderSmi.cs
- SelectedCellsCollection.cs
- ImmComposition.cs
- ClientSponsor.cs
- WebSysDescriptionAttribute.cs