forked from ClearFoundry/ClearScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIArrayBufferView.cs
More file actions
54 lines (48 loc) · 2.35 KB
/
IArrayBufferView.cs
File metadata and controls
54 lines (48 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
namespace Microsoft.ClearScript.JavaScript
{
/// <summary>
/// Defines properties and methods common to all
/// <see href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer">ArrayBuffer</see>
/// views.
/// </summary>
public interface IArrayBufferView
{
/// <summary>
/// Gets view's underlying <c>ArrayBuffer</c>.
/// </summary>
IArrayBuffer ArrayBuffer { get; }
/// <summary>
/// Gets the view's offset within the underlying <c>ArrayBuffer</c>.
/// </summary>
ulong Offset { get; }
/// <summary>
/// Gets the view's size in bytes.
/// </summary>
ulong Size { get; }
/// <summary>
/// Creates a byte array containing a copy of the view's contents.
/// </summary>
/// <returns>A new byte array containing a copy of the view's contents.</returns>
byte[] GetBytes();
/// <summary>
/// Copies bytes from the view into the specified byte array.
/// </summary>
/// <param name="offset">The offset within the view of the first byte to copy.</param>
/// <param name="count">The maximum number of bytes to copy.</param>
/// <param name="destination">The byte array into which to copy the bytes.</param>
/// <param name="destinationIndex">The index within <paramref name="destination"/> at which to store the first copied byte.</param>
/// <returns>The number of bytes copied.</returns>
ulong ReadBytes(ulong offset, ulong count, byte[] destination, ulong destinationIndex);
/// <summary>
/// Copies bytes from the specified byte array into the view.
/// </summary>
/// <param name="source">The byte array from which to copy the bytes.</param>
/// <param name="sourceIndex">The index within <paramref name="source"/> of the first byte to copy.</param>
/// <param name="count">The maximum number of bytes to copy.</param>
/// <param name="offset">The offset within the view at which to store the first copied byte.</param>
/// <returns>The number of bytes copied.</returns>
ulong WriteBytes(byte[] source, ulong sourceIndex, ulong count, ulong offset);
}
}