Code:
/ FX-1434 / FX-1434 / 1.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
- XmlWrappingReader.cs
- JavaScriptSerializer.cs
- ImageClickEventArgs.cs
- AnonymousIdentificationModule.cs
- RadioButtonAutomationPeer.cs
- DefaultPrintController.cs
- StorageBasedPackageProperties.cs
- XPathQueryGenerator.cs
- PolicyChain.cs
- DbConnectionStringCommon.cs
- CheckBoxStandardAdapter.cs
- XmlSchemaElement.cs
- MsmqIntegrationMessagePool.cs
- DeviceContext2.cs
- EntityDataSourceWrapper.cs
- AssociationSetEnd.cs
- DiscardableAttribute.cs
- DesignConnectionCollection.cs
- DurationConverter.cs
- Invariant.cs
- RSAPKCS1SignatureFormatter.cs
- SoapTypeAttribute.cs
- ClientEventManager.cs
- ClientScriptManagerWrapper.cs
- FileUtil.cs
- GACIdentityPermission.cs
- DeferredSelectedIndexReference.cs
- OptimalBreakSession.cs
- Exception.cs
- SettingsBindableAttribute.cs
- MultiBindingExpression.cs
- Partitioner.cs
- XmlRootAttribute.cs
- ComboBoxItem.cs
- SafeProcessHandle.cs
- ObjectStateManagerMetadata.cs
- DbProviderServices.cs
- OdbcFactory.cs
- PeerContact.cs
- ChangeNode.cs
- PrintPreviewControl.cs
- DataSourceListEditor.cs
- DataControlFieldCollection.cs
- FileLevelControlBuilderAttribute.cs
- SqlUtils.cs
- Style.cs
- shaperfactoryquerycacheentry.cs
- Matrix3DValueSerializer.cs
- RoleManagerModule.cs
- ReadWriteControlDesigner.cs
- CopyOnWriteList.cs
- ColorConvertedBitmap.cs
- Asn1IntegerConverter.cs
- TextRangeEdit.cs
- PenContext.cs
- DataStorage.cs
- ConfigurationStrings.cs
- SolidColorBrush.cs
- TranslateTransform3D.cs
- XmlUnspecifiedAttribute.cs
- PageThemeParser.cs
- XmlSubtreeReader.cs
- ClickablePoint.cs
- ByValueEqualityComparer.cs
- SafeRightsManagementQueryHandle.cs
- DataBindEngine.cs
- XmlNamespaceMapping.cs
- ByteAnimationBase.cs
- TimeIntervalCollection.cs
- ConfigXmlCDataSection.cs
- RequestCachePolicy.cs
- Message.cs
- DomainLiteralReader.cs
- Int64KeyFrameCollection.cs
- DataViewSettingCollection.cs
- ReadOnlyDictionary.cs
- XMLDiffLoader.cs
- SqlParameter.cs
- TemplateModeChangedEventArgs.cs
- VirtualPathProvider.cs
- ErrorEventArgs.cs
- PipelineComponent.cs
- EasingKeyFrames.cs
- CheckedListBox.cs
- GACMembershipCondition.cs
- InternalCache.cs
- SafeNativeMethods.cs
- Currency.cs
- ExtensionElement.cs
- VScrollProperties.cs
- DocumentReferenceCollection.cs
- Preprocessor.cs
- BlurEffect.cs
- ListViewSelectEventArgs.cs
- MainMenu.cs
- SubMenuStyleCollection.cs
- CallbackException.cs
- PolicyManager.cs
- wmiprovider.cs
- TextInfo.cs