GetBlobData 메서드
Returns the specified portion of the data in the column.
네임스페이스: Microsoft.SqlServer.Dts.Pipeline
어셈블리: Microsoft.SqlServer.PipelineHost(Microsoft.SqlServer.PipelineHost.dll)
구문
‘선언
Public Function GetBlobData ( _
offset As Integer, _
count As Integer _
) As Byte()
‘사용 방법
Dim instance As BlobColumn
Dim offset As Integer
Dim count As Integer
Dim returnValue As Byte()
returnValue = instance.GetBlobData(offset, _
count)
public byte[] GetBlobData(
int offset,
int count
)
public:
array<unsigned char>^ GetBlobData(
int offset,
int count
)
member GetBlobData :
offset:int *
count:int -> byte[]
public function GetBlobData(
offset : int,
count : int
) : byte[]
매개 변수
- offset
유형: System. . :: . .Int32
The byte index at which to begin retrieving data.
- count
유형: System. . :: . .Int32
The number of bytes of data to retrieve.
반환 값
유형: array<System. . :: . .Byte> [] () [] []
An array of bytes that contains the specified portion of the data in the column.