예제 #1
0
        protected override void InnerBegin()
        {
            // we have a ongoing current transaction, join it!
            if (System.Transactions.Transaction.Current != null)
            {
                var ktx = (IKernelTransaction)TransactionInterop
                          .GetDtcTransaction(System.Transactions.Transaction.Current);

                SafeTransactionHandle handle;
                ktx.GetHandle(out handle);

                // even though _TransactionHandle can already contain a handle if this thread
                // had been yielded just before setting this reference, the "safe"-ness of the wrapper should
                // not dispose the other handle which is now removed
                _TransactionHandle = handle;
                IsAmbient          = true;
            }
            else
            {
                _TransactionHandle = createTransaction(string.Format("{0} Transaction", theName));
            }
            if (!_TransactionHandle.IsInvalid)
            {
                return;
            }

            throw new TransactionException(
                      "Cannot begin file transaction. CreateTransaction failed and there's no ambient transaction.",
                      LastEx());
        }
예제 #2
0
 private static extern SafeFindHandle FindFirstFileTransactedW(
     [In, MarshalAs(UnmanagedType.LPWStr)] string lpFileName,
     [In] FINDEX_INFO_LEVELS fInfoLevelId,             // TODO: Won't work.
     [Out] out WIN32_FIND_DATA lpFindFileData,
     [In] FINDEX_SEARCH_OPS fSearchOp,
     IntPtr lpSearchFilter,
     [In] uint dwAdditionalFlags,
     [In] SafeTransactionHandle hTransaction);
예제 #3
0
 private static extern SafeFileHandle CreateFileTransactedW(
     [In, MarshalAs(UnmanagedType.LPWStr)] string lpFileName,
     [In] NativeFileAccess dwDesiredAccess,
     [In] NativeFileShare dwShareMode,
     [In] IntPtr lpSecurityAttributes,
     [In] NativeFileMode dwCreationDisposition,
     [In] uint dwFlagsAndAttributes,
     [In] IntPtr hTemplateFile,
     [In] SafeTransactionHandle hTransaction,
     [In] IntPtr pusMiniVersion,
     [In] IntPtr pExtendedParameter);
예제 #4
0
 private static extern bool DeleteFileTransactedW(
     [MarshalAs(UnmanagedType.LPWStr)] string file,
     SafeTransactionHandle transaction);
예제 #5
0
 private static extern bool MoveFileTransacted([In] string lpExistingFileName,
                                               [In] string lpNewFileName, [In] IntPtr lpProgressRoutine,
                                               [In] IntPtr lpData,
                                               [In] MoveFileFlags dwFlags,
                                               [In] SafeTransactionHandle hTransaction);
예제 #6
0
 private static extern bool CreateHardLinkTransacted([In] string lpFileName,
                                                     [In] string lpExistingFileName,
                                                     [In] IntPtr lpSecurityAttributes,
                                                     [In] SafeTransactionHandle hTransaction);
예제 #7
0
 private static extern bool RollbackTransaction(SafeTransactionHandle transaction);
예제 #8
0
 private static extern bool CommitTransaction(SafeTransactionHandle transaction);
예제 #9
0
		private static extern bool RollbackTransaction(SafeTransactionHandle transaction);
예제 #10
0
 private static extern int GetFullPathNameTransactedW(
     [In, MarshalAs(UnmanagedType.LPWStr)] string lpFileName,
     [In] int nBufferLength,
     [Out] StringBuilder lpBuffer,
     [In, Out] ref IntPtr lpFilePart,
     [In] SafeTransactionHandle hTransaction);
예제 #11
0
 private static extern bool RemoveDirectoryTransactedW(
     [MarshalAs(UnmanagedType.LPWStr)] string lpPathName,
     SafeTransactionHandle hTransaction);
예제 #12
0
		protected override void InnerBegin()
		{
			// we have a ongoing current transaction, join it!
			if (System.Transactions.Transaction.Current != null)
			{
				var ktx = (IKernelTransaction) TransactionInterop
				                               	.GetDtcTransaction(System.Transactions.Transaction.Current);

				SafeTransactionHandle handle;
				ktx.GetHandle(out handle);

				// even though _TransactionHandle can already contain a handle if this thread 
				// had been yielded just before setting this reference, the "safe"-ness of the wrapper should
				// not dispose the other handle which is now removed
				_TransactionHandle = handle;
				IsAmbient = true;
			}
			else _TransactionHandle = createTransaction(string.Format("{0} Transaction", theName));
			if (!_TransactionHandle.IsInvalid) return;

			throw new TransactionException(
				"Cannot begin file transaction. CreateTransaction failed and there's no ambient transaction.",
				LastEx());
		}
예제 #13
0
		private static extern bool RemoveDirectoryTransactedW(
			[MarshalAs(UnmanagedType.LPWStr)] string lpPathName,
			SafeTransactionHandle hTransaction);
예제 #14
0
		private static extern bool CreateDirectoryTransactedW(
			[MarshalAs(UnmanagedType.LPWStr)] string lpTemplateDirectory,
			[MarshalAs(UnmanagedType.LPWStr)] string lpNewDirectory,
			IntPtr lpSecurityAttributes,
			SafeTransactionHandle hTransaction);
예제 #15
0
		private static extern bool DeleteFileTransactedW(
			[MarshalAs(UnmanagedType.LPWStr)] string file,
			SafeTransactionHandle transaction);
예제 #16
0
 private static extern bool CreateDirectoryTransactedW(
     [MarshalAs(UnmanagedType.LPWStr)] string lpTemplateDirectory,
     [MarshalAs(UnmanagedType.LPWStr)] string lpNewDirectory,
     IntPtr lpSecurityAttributes,
     SafeTransactionHandle hTransaction);
예제 #17
0
		private static extern bool CommitTransaction(SafeTransactionHandle transaction);