> ## Documentation Index
> Fetch the complete documentation index at: https://easyaf.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# IChangeSetItemAuthorizer

> Represents a change set item authorizer.

## Definition

**Assembly:** Microsoft.Restier.Core.dll

**Namespace:** Microsoft.Restier.Core.Submit

## Syntax

```csharp theme={"dark"}
Microsoft.Restier.Core.Submit.IChangeSetItemAuthorizer
```

## Summary

Represents a change set item authorizer.

## Methods

### <Icon icon="function" iconType="duotone" color="#419AC5" size={24} className="mr-2" /> AuthorizeAsync <Badge color="orange">Abstract</Badge>

Asynchronously authorizes the ChangeSetItem.

#### Syntax

```csharp theme={"dark"}
System.Threading.Tasks.Task<bool> AuthorizeAsync(Microsoft.Restier.Core.Submit.SubmitContext context, Microsoft.Restier.Core.Submit.ChangeSetItem item, System.Threading.CancellationToken cancellationToken)
```

#### Parameters

| Name                | Type                                          | Description                         |
| ------------------- | --------------------------------------------- | ----------------------------------- |
| `context`           | `Microsoft.Restier.Core.Submit.SubmitContext` | The submit context.                 |
| `item`              | `Microsoft.Restier.Core.Submit.ChangeSetItem` | A change set item to be authorized. |
| `cancellationToken` | `System.Threading.CancellationToken`          | A cancellation token.               |

#### Returns

Type: `System.Threading.Tasks.Task<bool>`
A task that represents the asynchronous operation.
