SaaS CMS has officially launched! Learn more now.

Enum SqlBlobAccess

Defines constants for read, write, or read/write access to a text, ntext, or image column.

Namespace: Mediachase.BusinessFoundation.Data.Sql
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 11.8.3
Syntax
[Flags]
public enum SqlBlobAccess
Remarks

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Fields

Name Description
Read

Read access to the text, ntext, or image column. Data can be read from the column. Combine with Write for read/write access.

ReadWrite

Read and write access to the text, ntext, or image column. Data can be read from and written to the column.

Write

Write access to the text, ntext, or image column. Data can be read from the column. Combine with Read for read/write access.

Extension Methods