Windows apps
Collapse the table of content
Expand the table of content

WindowsRuntimeBufferExtensions::CopyTo Method (IBuffer, IBuffer)

.NET Framework (current version)

Copies all bytes from the source buffer (Windows.Storage.Streams.IBuffer) to the destination buffer, 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, 
	IBuffer^ destination
)

Parameters

source
Type: IBuffer

The source buffer.

destination
Type: IBuffer

The destination buffer.

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).

ExceptionCondition
ArgumentNullException

source or destination is nullptr.

ArgumentException

The size of source exceeds the capacity of destination.

.NET Framework

Supported in: 4.6, 4.5

.NET for Windows Phone apps

Supported in: Windows Phone Silverlight 8
Show:
© 2017 Microsoft