Mediachase FileUploader.NET 1.9 Framework Help

SqlBlobStream Constructor (SqlTransaction, String, String, SqlBlobAccess, SqlParameter[])

Initializes a new instance of SqlBlobStream class for the specified Transaction, Table Name, BLOB Data Column, with the specified read/write permission and Primary Keys.

[Visual Basic]
Overloads Public Sub New( _
   ByVal Transaction As SqlTransaction, _
   ByVal TableName As String, _
   ByVal BlobDataColumn As String, _
   ByVal BlobAccess As SqlBlobAccess, _
   ParamArray PrimaryKeys As SqlParameter() _
)
[C#]
public SqlBlobStream(
   SqlTransaction Transaction,
   string TableName,
   string BlobDataColumn,
   SqlBlobAccess BlobAccess,
   params SqlParameter[] PrimaryKeys
);

Parameters

Transaction
A sql transaction. The default value is an null.
TableName
A table name for the table that the current SqlBlobStream object will encapsulate.
BlobDataColumn
A column name for the column that the current SqlBlobStream object will encapsulate.
BlobAccess
A SqlBlobAccessconstant that gets the CanRead and CanWrite properties of the SqlBlobStream object.
PrimaryKeys
A primary keys collection for the row that the current SqlBlobStream object will encapsulate.

See Also

SqlBlobStream Class | Mediachase.FileUploader Namespace | SqlBlobStream Constructor Overload List