Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FixedSOMPage.cs
- RuntimeVariableList.cs
- XmlElementCollection.cs
- CorrelationManager.cs
- GenericPrincipal.cs
- Rules.cs
- ColumnClickEvent.cs
- SendActivityDesignerTheme.cs
- DbDataSourceEnumerator.cs
- COM2ICategorizePropertiesHandler.cs
- TextViewBase.cs
- SupportingTokenSpecification.cs
- InfoCardUIAgent.cs
- XmlSchemaIdentityConstraint.cs
- MD5CryptoServiceProvider.cs
- InputScopeAttribute.cs
- PathNode.cs
- BookmarkScope.cs
- SpecialNameAttribute.cs
- ParameterSubsegment.cs
- BitmapMetadataEnumerator.cs
- DataObjectCopyingEventArgs.cs
- ObjectFullSpanRewriter.cs
- StorageRoot.cs
- DbConnectionInternal.cs
- GeneralTransform2DTo3D.cs
- DiscriminatorMap.cs
- SqlCacheDependencySection.cs
- BaseServiceProvider.cs
- ThrowOnMultipleAssignment.cs
- File.cs
- MsmqBindingElementBase.cs
- Baml2006ReaderContext.cs
- TypeConstant.cs
- PageCodeDomTreeGenerator.cs
- ReliableSessionElement.cs
- ScrollData.cs
- XmlNodeComparer.cs
- Soap.cs
- GridErrorDlg.cs
- DataConnectionHelper.cs
- TransformerInfoCollection.cs
- HttpPostClientProtocol.cs
- PropertyEntry.cs
- SmtpTransport.cs
- ColorAnimationBase.cs
- ListViewInsertedEventArgs.cs
- ConfigurationSectionGroupCollection.cs
- HttpListenerResponse.cs
- SQLDecimalStorage.cs
- DebuggerAttributes.cs
- DocComment.cs
- PackagingUtilities.cs
- Int32EqualityComparer.cs
- ReadOnlyTernaryTree.cs
- VirtualStackFrame.cs
- securestring.cs
- ReferenceConverter.cs
- SettingsPropertyValueCollection.cs
- LogicalExpr.cs
- SqlMethodTransformer.cs
- MenuItemStyle.cs
- Header.cs
- TypeExtensions.cs
- ProcessModelInfo.cs
- Mouse.cs
- GlyphingCache.cs
- SafeNativeMethodsCLR.cs
- EntitySqlException.cs
- VirtualizingPanel.cs
- FormsAuthenticationUser.cs
- Geometry.cs
- ClientTarget.cs
- SqlServer2KCompatibilityAnnotation.cs
- NamespaceEmitter.cs
- WSSecureConversation.cs
- ActivityDesigner.cs
- SafeHandle.cs
- DataBindingValueUIHandler.cs
- BitStream.cs
- UdpReplyToBehavior.cs
- HyperLinkColumn.cs
- BitmapCacheBrush.cs
- CommandLibraryHelper.cs
- DesignerSerializationVisibilityAttribute.cs
- PenLineJoinValidation.cs
- ContextBase.cs
- ISAPIRuntime.cs
- DecimalAnimation.cs
- UIElement3D.cs
- ParseChildrenAsPropertiesAttribute.cs
- FileSystemEventArgs.cs
- Zone.cs
- RawContentTypeMapper.cs
- DbConnectionOptions.cs
- ErrorFormatterPage.cs
- SchemaTableColumn.cs
- EmptyQuery.cs
- HideDisabledControlAdapter.cs
- Msec.cs