1 interface inheriting from ITransactionReceiver
System.Transactions.Local (1)
_generated\22\System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver.cs (1)
23file unsafe interface InterfaceImplementation : global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver
28 references to ITransactionReceiver
System.Transactions.Local (28)
_generated\22\System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver.cs (16)
42void global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver.UnmarshalPropagationToken(uint cbToken, byte[] rgbToken, out global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransaction ppTransaction) 44var(__this, __vtable) = ((global::System.Runtime.InteropServices.Marshalling.IUnmanagedVirtualMethodTableProvider)this).GetVirtualMethodTableInfoForKey(typeof(global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver)); 80global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver @this = default; 94@this = global::System.Runtime.InteropServices.ComWrappers.ComInterfaceDispatch.GetInstance<global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver>(__this_native); 110void global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver.GetReturnTokenSize(out uint pcbReturnToken) 112var(__this, __vtable) = ((global::System.Runtime.InteropServices.Marshalling.IUnmanagedVirtualMethodTableProvider)this).GetVirtualMethodTableInfoForKey(typeof(global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver)); 132global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver @this = default; 139@this = global::System.Runtime.InteropServices.ComWrappers.ComInterfaceDispatch.GetInstance<global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver>(__this_native); 155void global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver.MarshalReturnToken(uint cbReturnToken, out byte[] rgbReturnToken, out uint pcbUsed) 157var(__this, __vtable) = ((global::System.Runtime.InteropServices.Marshalling.IUnmanagedVirtualMethodTableProvider)this).GetVirtualMethodTableInfoForKey(typeof(global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver)); 199global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver @this = default; 211@this = global::System.Runtime.InteropServices.ComWrappers.ComInterfaceDispatch.GetInstance<global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver>(__this_native); 229void global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver.Reset() 231var(__this, __vtable) = ((global::System.Runtime.InteropServices.Marshalling.IUnmanagedVirtualMethodTableProvider)this).GetVirtualMethodTableInfoForKey(typeof(global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver)); 248global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver @this = default; 253@this = global::System.Runtime.InteropServices.ComWrappers.ComInterfaceDispatch.GetInstance<global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver>(__this_native);
_generated\23\System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiverFactory.cs (5)
36void global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiverFactory.Create(out global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver pTxReceiver) 56pTxReceiver = global::System.Runtime.InteropServices.Marshalling.ComInterfaceMarshaller<global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver>.ConvertToManaged(__pTxReceiver_native); 63global::System.Runtime.InteropServices.Marshalling.ComInterfaceMarshaller<global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver>.Free(__pTxReceiver_native); 74global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver pTxReceiver = default; 84__pTxReceiver_native = (void*)global::System.Runtime.InteropServices.Marshalling.ComInterfaceMarshaller<global::System.Transactions.DtcProxyShim.DtcInterfaces.ITransactionReceiver>.ConvertToUnmanaged(pTxReceiver);
System\Transactions\DtcProxyShim\DtcInterfaces\ITransactionReceiverFactory.cs (1)
13void Create([MarshalAs(UnmanagedType.Interface)] out ITransactionReceiver pTxReceiver);
System\Transactions\DtcProxyShim\DtcProxyShimFactory.cs (6)
36private readonly ConcurrentQueue<ITransactionReceiver> _cachedReceivers = new(); 239ITransactionReceiver receiver = GetCachedReceiver(); 380internal ITransactionReceiver GetCachedReceiver() 382if (_cachedReceivers.TryDequeue(out ITransactionReceiver? receiver)) 388receiverFactory.Create(out ITransactionReceiver transactionReceiver); 393internal void ReturnCachedReceiver(ITransactionReceiver receiver)