WindowsRuntimeBufferExtensions::CopyTo Method (IBuffer, array<Byte>)
.NET Framework (current version)
Copies all bytes from the source buffer (Windows.Storage.Streams.IBuffer) to the destination array, starting at offset 0 (zero) in both.
This API is not CLS-compliant. Namespace: System.Runtime.InteropServices.WindowsRuntime
Assembly: System.Runtime.WindowsRuntime (in System.Runtime.WindowsRuntime.dll)
[ExtensionAttribute] [CLSCompliantAttribute(false)] public: static void CopyTo( IBuffer^ source, array<unsigned char>^ destination )
Parameters
- source
- Type: IBuffer
The buffer to copy data from.
- destination
- Type: array<System::Byte>
The array to copy data to.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IBuffer. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).| Exception | Condition |
|---|---|
| ArgumentNullException | source or destination is nullptr. |
| ArgumentException | The size of source exceeds the size of destination. |
Show: