# ITransactionManager.Prepared(Guid, DateTime, ParticipantId, TransactionalStatus, CancellationToken)

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.transactions/orleans.transactions.abstractions.itransactionmanager/) | [Methods](/orleans/docs/api/csharp/microsoft.orleans.transactions/orleans.transactions.abstractions.itransactionmanager/methods/)

[Source](https://github.com/dotnet/orleans/blob/1644940b035c7bdf215a4fd7135757c06bcfe9ec/src/Orleans.Transactions/Abstractions/ITransactionManager.cs#L65)

```csharp
public virtual Task Prepared(Guid transactionId, DateTime timeStamp, ParticipantId resource, TransactionalStatus status, CancellationToken cancellationToken)
```

Reports that a participant has prepared.

### Parameters

- `transactionId` (`Guid`): The transaction identifier.
- `timeStamp` (`DateTime`): The commit timestamp.
- `resource` (`ParticipantId`): The reporting participant.
- `status` (`TransactionalStatus`): The prepare status.
- `cancellationToken` (`CancellationToken`): The cancellation token.

### Returns

A `System.Threading.Tasks.Task` representing the operation.
