'Declaration
<ExtensionAttribute()> Public Overloads Shared Function MoveToWritableDirectoryContents( _ ByVal writableDirectoryContents As IWritableDirectoryContents, _ ByVal destinationWritableDirectoryContents As IWritableDirectoryContents, _ ByVal copyBufferSize As Integer _ ) As ValueTuple(Of Long,Long,Long)
'Usage
Dim writableDirectoryContents As IWritableDirectoryContents Dim destinationWritableDirectoryContents As IWritableDirectoryContents Dim copyBufferSize As Integer Dim value As ValueTuple(Of Long,Long,Long) value = IWritableDirectoryContentsExtension.MoveToWritableDirectoryContents(writableDirectoryContents, destinationWritableDirectoryContents, copyBufferSize)
[Extension()] public static ValueTuple<long,long,long> MoveToWritableDirectoryContents( IWritableDirectoryContents writableDirectoryContents, IWritableDirectoryContents destinationWritableDirectoryContents, int copyBufferSize )
[Extension()] public: static ValueTuple<int64,int64,int64> MoveToWritableDirectoryContents( IWritableDirectoryContents^ writableDirectoryContents, IWritableDirectoryContents^ destinationWritableDirectoryContents, int copyBufferSize )
Parameters
- writableDirectoryContents
- The writable directory contents object that will perform the operation.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - destinationWritableDirectoryContents
- The writable directory contents into which the directory will be moved.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - copyBufferSize
- The size of the copy buffer. This value must be greater than zero. The default size is 81920.
Valid values of this parameter are in the range from
1
to2147483647 (Int32.MaxValue)
.