IBlob.Slice

IBlob.Slice method

Returns a new Blob object with bytes ranging from the optional start parameter up to but not including the optional end parameter, and with a type attribute that is the value of the optional contentType parameter.

public IBlob Slice(ulong start, ulong end, string contentType)
ParameterTypeDescription
startUInt64The parameter is a value for the start point of a slice
endUInt64The parameter is a value for the start point of a slice
contentTypeStringThe parameter is a media type of the Blob

Return Value

Returns a new Blob object with bytes ranging from the optional start parameter up to but not including the optional end parameter, and with a type attribute that is the value of the optional contentType parameter.

See Also