Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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 check 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. // // ==--== /*============================================================ ** ** 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 check 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PointCollectionValueSerializer.cs
- XPathParser.cs
- WpfKnownType.cs
- PersistenceTypeAttribute.cs
- EditorPartCollection.cs
- ConfigurationManagerHelperFactory.cs
- filewebresponse.cs
- ResetableIterator.cs
- DoubleCollectionValueSerializer.cs
- SmtpMail.cs
- DataGridViewRowStateChangedEventArgs.cs
- ValueSerializer.cs
- XmlComplianceUtil.cs
- Viewport2DVisual3D.cs
- AxHost.cs
- UIElement3D.cs
- ActiveXHost.cs
- SafeNativeMethods.cs
- StylusOverProperty.cs
- DeadLetterQueue.cs
- ForwardPositionQuery.cs
- XmlDataSourceView.cs
- SqlConnectionStringBuilder.cs
- RTLAwareMessageBox.cs
- WorkflowOperationBehavior.cs
- CodeMemberField.cs
- XamlToRtfParser.cs
- XmlILAnnotation.cs
- CodeCommentStatement.cs
- PersonalizableTypeEntry.cs
- DataGridColumnHeaderCollection.cs
- ScriptRegistrationManager.cs
- AutoGeneratedField.cs
- SpecularMaterial.cs
- MetabaseServerConfig.cs
- SelectionUIService.cs
- EventEntry.cs
- DataPagerFieldCollection.cs
- IOThreadTimer.cs
- FlowDocumentReader.cs
- RowsCopiedEventArgs.cs
- TiffBitmapDecoder.cs
- PeerNearMe.cs
- SiteMapProvider.cs
- LineProperties.cs
- OleDbFactory.cs
- JoinGraph.cs
- SQLInt64Storage.cs
- WebPartsPersonalization.cs
- SessionPageStatePersister.cs
- SqlMethods.cs
- XmlEncodedRawTextWriter.cs
- MimeFormReflector.cs
- XmlEncodedRawTextWriter.cs
- FixedBufferAttribute.cs
- MetadataArtifactLoaderResource.cs
- WebPartChrome.cs
- SqlCacheDependencyDatabaseCollection.cs
- HwndMouseInputProvider.cs
- XamlParser.cs
- JavaScriptSerializer.cs
- CommonRemoteMemoryBlock.cs
- MediaTimeline.cs
- ListItem.cs
- SortExpressionBuilder.cs
- HandlerMappingMemo.cs
- SoapFault.cs
- SymmetricKeyWrap.cs
- TableLayoutRowStyleCollection.cs
- Baml2006KnownTypes.cs
- RIPEMD160.cs
- MessageDispatch.cs
- DataGridItemAutomationPeer.cs
- XmlChoiceIdentifierAttribute.cs
- BrowserCapabilitiesCodeGenerator.cs
- RoleGroup.cs
- TextRunTypographyProperties.cs
- Scalars.cs
- IsolatedStorage.cs
- SelectionRangeConverter.cs
- ScrollEvent.cs
- HandlerFactoryWrapper.cs
- XhtmlBasicLinkAdapter.cs
- DetailsViewDeletedEventArgs.cs
- CalendarDesigner.cs
- InternalCache.cs
- SqlUserDefinedAggregateAttribute.cs
- XPathNavigatorReader.cs
- _emptywebproxy.cs
- TextRunCache.cs
- CountAggregationOperator.cs
- HwndSourceParameters.cs
- HttpServerVarsCollection.cs
- TextCollapsingProperties.cs
- WmlPhoneCallAdapter.cs
- PolicyStatement.cs
- Parameter.cs
- ArglessEventHandlerProxy.cs
- XmlUtil.cs
- MSAANativeProvider.cs