Represents a BLOb (binary large object).
Syntax
| Visual Basic (Declaration) | |
|---|
Public NotInheritable Class Blob
Implements IUserDefinedType |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As Blob
|
| Managed Extensions for C++ | |
|---|
public __gc __sealed class Blob : public IUserDefinedType |
Example
The example shows how to use the Blob class in a persistent object.
| C# | Copy Code |
|---|
[Persistent("USER")] public class User { [Field("IMAGE", Mandatory = false)] public Blob Image { // ... code of the property. } [Field("ID", Mandatory = true, Identifier = true)] public ID<string> Id { // ... code of the property. } // ... Other code of the class. } // ... Other code. User user = new User(); user.Image.Value = // Save something in it. |
Remarks
Inheritance Hierarchy
System.Object
Chili.Opf3.Blob
Requirements
Namespace: Chili.Opf3
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: Chili.Opf3 (in Chili.Opf3.dll)
See Also