Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / clr / src / BCL / System / Runtime / Remoting / ProxyAttribute.cs / 1 / ProxyAttribute.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** File: ProxyAttribute.cs ** ** ** Purpose: Defines the attribute that is used on types which ** need custom proxies. ** ** ===========================================================*/ namespace System.Runtime.Remoting.Proxies { using System.Reflection; using System.Runtime.Remoting.Activation; using System.Runtime.Remoting.Contexts; using System.Security.Permissions; // Attribute for types that need custom proxies [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)] [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.Infrastructure)] [SecurityPermissionAttribute(SecurityAction.InheritanceDemand, Flags=SecurityPermissionFlag.Infrastructure)] [System.Runtime.InteropServices.ComVisible(true)] public class ProxyAttribute : Attribute , IContextAttribute { public ProxyAttribute() { // Default constructor } // Default implementation of CreateInstance uses our activation services to create an instance // of the transparent proxy or an uninitialized marshalbyrefobject and returns it. public virtual MarshalByRefObject CreateInstance(Type serverType) { if (!serverType.IsContextful) { throw new RemotingException( Environment.GetResourceString( "Remoting_Activation_MBR_ProxyAttribute")); } if (serverType.IsAbstract) { throw new RemotingException( Environment.GetResourceString( "Acc_CreateAbst")); } return CreateInstanceInternal(serverType); } internal MarshalByRefObject CreateInstanceInternal(Type serverType) { return ActivationServices.CreateInstance(serverType); } // Default implementation of CreateProxy creates an instance of our // remoting proxy public virtual RealProxy CreateProxy(ObjRef objRef, Type serverType, Object serverObject, Context serverContext) { RemotingProxy rp = new RemotingProxy(serverType); // If this is a serverID, set the native context field in the TP if (null != serverContext) { RealProxy.SetStubData(rp, serverContext.InternalContextID); } if (objRef != null && objRef.GetServerIdentity().IsAllocated) { rp.SetSrvInfo(objRef.GetServerIdentity(), objRef.GetDomainID()); } // Set the flag indicating that the fields of the proxy // have been initialized rp.Initialized = true; // Sanity Type t = serverType; if (!t.IsContextful && !t.IsMarshalByRef && (null != serverContext)) { throw new RemotingException( Environment.GetResourceString( "Remoting_Activation_MBR_ProxyAttribute")); } return rp; } // implementation of interface IContextAttribute [System.Runtime.InteropServices.ComVisible(true)] public bool IsContextOK(Context ctx, IConstructionCallMessage msg) { // always happy... return true; } [System.Runtime.InteropServices.ComVisible(true)] public void GetPropertiesForNewContext(IConstructionCallMessage msg) { // chill.. do nothing. return; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ExtensionQuery.cs
- PersonalizablePropertyEntry.cs
- FlowDocumentView.cs
- OperatorExpressions.cs
- COM2Properties.cs
- UnicastIPAddressInformationCollection.cs
- EffectiveValueEntry.cs
- CodeArgumentReferenceExpression.cs
- ProvidersHelper.cs
- BoundPropertyEntry.cs
- Permission.cs
- XmlReturnWriter.cs
- EventListenerClientSide.cs
- AutomationAttributeInfo.cs
- IisTraceWebEventProvider.cs
- TransactionBridgeSection.cs
- AssociatedControlConverter.cs
- MessagingDescriptionAttribute.cs
- SessionEndingEventArgs.cs
- DataBoundControlParameterTarget.cs
- MessageSmuggler.cs
- Baml6Assembly.cs
- MessageBox.cs
- WebPartActionVerb.cs
- DataGridSortCommandEventArgs.cs
- COM2Enum.cs
- CompositeFontParser.cs
- DetailsViewInsertedEventArgs.cs
- StaticExtension.cs
- HtmlEmptyTagControlBuilder.cs
- StyleCollection.cs
- FullTextLine.cs
- Cursor.cs
- EntityDataSourceChangingEventArgs.cs
- SoapElementAttribute.cs
- TextProviderWrapper.cs
- ChildTable.cs
- NativeCompoundFileAPIs.cs
- TextTreeRootNode.cs
- HScrollBar.cs
- OleDbMetaDataFactory.cs
- TreeNodeEventArgs.cs
- SqlDataSourceView.cs
- PixelFormatConverter.cs
- SimpleWebHandlerParser.cs
- CodeArgumentReferenceExpression.cs
- WebSysDisplayNameAttribute.cs
- TextServicesPropertyRanges.cs
- HttpHandlerActionCollection.cs
- TableNameAttribute.cs
- BypassElementCollection.cs
- DtrList.cs
- dataSvcMapFileLoader.cs
- OrderByBuilder.cs
- EntitySet.cs
- ISAPIApplicationHost.cs
- CallInfo.cs
- ListViewPagedDataSource.cs
- ServicePointManager.cs
- JsonFormatReaderGenerator.cs
- ToolStripContainer.cs
- WindowsTooltip.cs
- SvcMapFileLoader.cs
- IIS7WorkerRequest.cs
- OdbcUtils.cs
- ValueConversionAttribute.cs
- VersionedStream.cs
- ButtonBaseAutomationPeer.cs
- SoapExtensionTypeElement.cs
- TableProviderWrapper.cs
- DiscoveryMessageSequenceGenerator.cs
- Bits.cs
- Adorner.cs
- XPathDocumentNavigator.cs
- TextDecorationCollection.cs
- AddInToken.cs
- PropertyGroupDescription.cs
- ReliableMessagingVersionConverter.cs
- WebPartConnectionsCloseVerb.cs
- ToolStripRenderEventArgs.cs
- COM2IDispatchConverter.cs
- Track.cs
- Dynamic.cs
- PropertyMetadata.cs
- SerializationSectionGroup.cs
- SafeMemoryMappedViewHandle.cs
- TaskFileService.cs
- PrinterResolution.cs
- BaseCodeDomTreeGenerator.cs
- ParseHttpDate.cs
- CombinedGeometry.cs
- SharedDp.cs
- WeakReference.cs
- TextServicesDisplayAttributePropertyRanges.cs
- SecureUICommand.cs
- ToolboxCategory.cs
- TimelineGroup.cs
- BamlBinaryWriter.cs
- DataObjectEventArgs.cs
- BrushConverter.cs