Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Runtime / Remoting / __TransparentProxy.cs / 1 / __TransparentProxy.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** File: __TransparentProxy.cs ** ** ** Purpose: Defines Transparent proxy ** ** ===========================================================*/ namespace System.Runtime.Remoting.Proxies { using System.Runtime.Remoting; // Transparent proxy and Real proxy are vital pieces of the // remoting data structures. Transparent proxy magically // creates a message that represents a call on it and delegates // to the Real proxy to do the real remoting work. using System; internal sealed class __TransparentProxy { // Created inside EE private __TransparentProxy() { throw new NotSupportedException(Environment.GetResourceString(ResId.NotSupported_Constructor)); } // Private members called by VM #pragma warning disable 169 private RealProxy _rp; // Reference to the real proxy private Object _stubData; // Data used by stubs to decide whether to short circuit calls or not private IntPtr _pMT; // Method table of the class this proxy represents private IntPtr _pInterfaceMT; // Cached interface method table private IntPtr _stub; // Unmanaged code that decides whether to short circuit calls or not #pragma warning restore 169 } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ExceptionTrace.cs
- DiscoveryRequestHandler.cs
- TdsParserSafeHandles.cs
- OperationContextScope.cs
- TextElementEditingBehaviorAttribute.cs
- WebPartCancelEventArgs.cs
- NetPeerTcpBinding.cs
- WindowsStartMenu.cs
- FormatSettings.cs
- FixedSOMElement.cs
- Vars.cs
- ModuleConfigurationInfo.cs
- ConstructorExpr.cs
- MemberInitExpression.cs
- ModelProperty.cs
- XmlElementAttribute.cs
- AnalyzedTree.cs
- PropertyValueEditor.cs
- TextEncodedRawTextWriter.cs
- HighContrastHelper.cs
- Geometry.cs
- XmlBaseReader.cs
- Int16.cs
- DataViewSetting.cs
- TiffBitmapDecoder.cs
- CryptoHandle.cs
- AddressingProperty.cs
- WSSecurityOneDotOneReceiveSecurityHeader.cs
- recordstatescratchpad.cs
- UriScheme.cs
- QilVisitor.cs
- InputLanguageProfileNotifySink.cs
- ObjectQuery_EntitySqlExtensions.cs
- SHA512Managed.cs
- XmlSchemaInclude.cs
- FixedNode.cs
- StorageComplexTypeMapping.cs
- MediaSystem.cs
- AstTree.cs
- InvalidEnumArgumentException.cs
- ReflectionHelper.cs
- BindUriHelper.cs
- DbMetaDataCollectionNames.cs
- BitmapCache.cs
- TaskForm.cs
- HMACSHA1.cs
- DataGridPageChangedEventArgs.cs
- CharacterMetrics.cs
- TypeDelegator.cs
- InfoCardUIAgent.cs
- ModelPerspective.cs
- GenerateScriptTypeAttribute.cs
- basevalidator.cs
- ConcurrentBag.cs
- DataGridViewDataConnection.cs
- ProfilePropertySettings.cs
- TableStyle.cs
- UserNameSecurityTokenProvider.cs
- MimeFormImporter.cs
- SimplePropertyEntry.cs
- NonVisualControlAttribute.cs
- SiteMapNodeItemEventArgs.cs
- TableAdapterManagerNameHandler.cs
- XmlNamespaceManager.cs
- PKCS1MaskGenerationMethod.cs
- Transactions.cs
- AuthorizationSection.cs
- CustomAssemblyResolver.cs
- OwnerDrawPropertyBag.cs
- DnsEndpointIdentity.cs
- ScrollItemProviderWrapper.cs
- HtmlShimManager.cs
- ControlPaint.cs
- BufferModesCollection.cs
- EmptyElement.cs
- XmlSchemaSimpleContentRestriction.cs
- MetaModel.cs
- TabPanel.cs
- BamlResourceContent.cs
- EntityDataSourceColumn.cs
- EntityDataSourceDataSelection.cs
- MimeReflector.cs
- DropSource.cs
- NameValuePair.cs
- VSWCFServiceContractGenerator.cs
- unitconverter.cs
- ErrorStyle.cs
- DbDataSourceEnumerator.cs
- RequestQueryParser.cs
- OutKeywords.cs
- PageThemeCodeDomTreeGenerator.cs
- EntityParameterCollection.cs
- ImageAutomationPeer.cs
- SoapEnumAttribute.cs
- ModuleBuilderData.cs
- ContentElement.cs
- SemanticResolver.cs
- EncoderNLS.cs
- CharacterBufferReference.cs
- WizardStepBase.cs