Gets or sets the byte array containing the file's contents.

Namespace:  BargeEx
Assembly:  BargeEx (in BargeEx.dll)
Version: 3.0.400.140 (3.0.400.140)

Syntax

C#
public virtual byte[] Contents { get; set; }
Visual Basic (Declaration)
Public Overridable Property Contents As Byte()
Visual C++
public:
virtual property array<unsigned char>^ Contents {
	array<unsigned char>^ get ();
	void set (array<unsigned char>^ value);
}

Property Value

The byte array containing the file's contents.

Remarks

This property should be set using the Load method. This contents of this property can be extracted using the Save method.

The ContentsSpecified property indicates whether or not this property will be included in the serialized class or generated document. The ContentsSpecified property is automatically set to true when this property is set.

See Also