AdlsClient.ConcurrentAppend(String, Boolean, Byte[], Int32, Int32) Method
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.
Synchronous API to perform concurrent append at server. The offset at which append will occur is determined by server. It is highly recomended to call this api with data size less than equals 4MB. Backend gurantees 4MB atomic appends.
public virtual void ConcurrentAppend (string path, bool autoCreate, byte[] dataBytes, int offset, int length);
abstract member ConcurrentAppend : string * bool * byte[] * int * int -> unit
override this.ConcurrentAppend : string * bool * byte[] * int * int -> unit
Public Overridable Sub ConcurrentAppend (path As String, autoCreate As Boolean, dataBytes As Byte(), offset As Integer, length As Integer)
Parameters
- path
- String
Path of the file
- autoCreate
- Boolean
- dataBytes
- Byte[]
Array of bytes to write to the file
- offset
- Int32
Offset in the byte array
- length
- Int32
Number of bytes to write from the offset
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET