DataTransferProperty<T> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
DataTransferProperty<T>(Boolean) |
Constructs DataTransferProperty to preserves the respective property. |
DataTransferProperty<T>(T) |
Constructor for DataTransferProperty to set value on the destination. This will overwrite the property on the destination with the parameter value. |
DataTransferProperty<T>(Boolean)
- Source:
- DataTransferPropertyOfT.cs
Constructs DataTransferProperty to preserves the respective property.
public DataTransferProperty (bool preserve);
new Azure.Storage.DataMovement.DataTransferProperty<'T> : bool -> Azure.Storage.DataMovement.DataTransferProperty<'T>
Public Sub New (preserve As Boolean)
Parameters
- preserve
- Boolean
Specifies whether or to preserve the property value from the source.
Applies to
DataTransferProperty<T>(T)
- Source:
- DataTransferPropertyOfT.cs
Constructor for DataTransferProperty to set value on the destination. This will overwrite the property on the destination with the parameter value.
public DataTransferProperty (T value);
new Azure.Storage.DataMovement.DataTransferProperty<'T> : 'T -> Azure.Storage.DataMovement.DataTransferProperty<'T>
Public Sub New (value As T)
Parameters
- value
- T
The value to set on the property.
Applies to
Azure SDK for .NET