Interface IBlob
A Blob is a data element that represents a file that is contained with its source code in the value attribute.
Inherited Members
Namespace: AasCore.Aas3_0_RC02
Assembly: AasCore.Aas3_0_RC02.dll
Syntax
public interface IBlob : IDataElement, ISubmodelElement, IReferable, IHasExtensions, IHasKind, IHasSemantics, IQualifiable, IHasDataSpecification, IClass
Properties
| Improve this Doc View SourceContentType
Content type of the content of the Blob.
Declaration
string ContentType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
The content type (MIME type) states which file extensions the file can have.
Valid values are content types like e.g. application/json
, application/xls
,
image/jpg
.
The allowed values are defined as in RFC2046.
Value
The value of the Blob instance of a blob data element.
Declaration
byte[] Value { get; set; }
Property Value
Type | Description |
---|---|
System.Byte[] |
Remarks
In contrast to the file property the file content is stored directly as value in the Blob data element.