# ArcBuffer.ArcBuffer(ArcBufferPage, int, int, int)

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.serialization/orleans.serialization.buffers.arcbuffer/) | [Constructors](/orleans/docs/api/csharp/microsoft.orleans.serialization/orleans.serialization.buffers.arcbuffer/constructors/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.Serialization/Buffers/ArcBufferWriter.cs#L1218-L1233)

```csharp
public ArcBuffer(ArcBufferPage first, int token, int offset, int length)
```

Represents a slice of a [ArcBufferWriter](/orleans/docs/api/csharp/microsoft.orleans.serialization/orleans.serialization.buffers.arcbufferwriter/).

### Parameters

- `first` (`ArcBufferPage`): The first page in the sequence.
- `token` (`int`): The token of the first page in the sequence.
- `offset` (`int`): The offset into the buffer at which this slice begins.
- `length` (`int`): The length of this slice.
