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
- SqlNodeAnnotation.cs
- DropSource.cs
- PriorityRange.cs
- LicenseException.cs
- ReturnType.cs
- MissingMemberException.cs
- CollectionViewSource.cs
- DBParameter.cs
- HttpVersion.cs
- XmlSchemaGroupRef.cs
- Expression.cs
- DataPagerCommandEventArgs.cs
- ColumnClickEvent.cs
- ServiceHttpModule.cs
- RawTextInputReport.cs
- SamlSecurityToken.cs
- WebScriptMetadataMessageEncoderFactory.cs
- AssemblyName.cs
- NavigationFailedEventArgs.cs
- BuildProviderAppliesToAttribute.cs
- ResourceReferenceExpression.cs
- SystemIcmpV4Statistics.cs
- XmlSerializableReader.cs
- ConfigurationPropertyCollection.cs
- AspNetHostingPermission.cs
- ObjectHandle.cs
- PersonalizablePropertyEntry.cs
- IProvider.cs
- ObjectDataProvider.cs
- ForeignConstraint.cs
- XsltInput.cs
- AssemblyFilter.cs
- MSAAEventDispatcher.cs
- ExpressionBuilderCollection.cs
- RefType.cs
- RequestQueryProcessor.cs
- FloaterParaClient.cs
- QueryableDataSourceHelper.cs
- AbstractDataSvcMapFileLoader.cs
- OuterProxyWrapper.cs
- XmlUtil.cs
- GroupBox.cs
- PKCS1MaskGenerationMethod.cs
- HTMLTagNameToTypeMapper.cs
- AppliedDeviceFiltersDialog.cs
- ResourceCategoryAttribute.cs
- BindToObject.cs
- MarshalByValueComponent.cs
- __TransparentProxy.cs
- PagesSection.cs
- Listener.cs
- PrintDocument.cs
- OracleParameter.cs
- SqlBulkCopyColumnMappingCollection.cs
- ScaleTransform3D.cs
- ExpressionSelection.cs
- NullableDoubleAverageAggregationOperator.cs
- PointF.cs
- X509Certificate.cs
- TemplateInstanceAttribute.cs
- StringReader.cs
- TableLayoutRowStyleCollection.cs
- NameNode.cs
- xdrvalidator.cs
- CallbackValidatorAttribute.cs
- FilteredXmlReader.cs
- SafeBuffer.cs
- XmlNavigatorStack.cs
- SubstitutionList.cs
- SharedStatics.cs
- XmlSchemaSimpleType.cs
- ExtensibleClassFactory.cs
- URLAttribute.cs
- TextFormatterContext.cs
- DrawingContextWalker.cs
- DataRowChangeEvent.cs
- ServiceSecurityContext.cs
- GenerateHelper.cs
- DoubleAnimationBase.cs
- ServiceModelSectionGroup.cs
- HistoryEventArgs.cs
- CellIdBoolean.cs
- TreeNodeBindingCollection.cs
- XmlStringTable.cs
- DrawingServices.cs
- ToolStripTemplateNode.cs
- ProviderCollection.cs
- FrugalMap.cs
- SectionUpdates.cs
- EventSinkHelperWriter.cs
- JavascriptCallbackMessageInspector.cs
- ArrayElementGridEntry.cs
- QuotedStringFormatReader.cs
- KeyGesture.cs
- TTSEngineProxy.cs
- XmlIncludeAttribute.cs
- BamlLocalizabilityResolver.cs
- BypassElementCollection.cs
- Rights.cs
- CacheVirtualItemsEvent.cs