Search Results for

    Show / Hide Table of Contents

    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
    IDataElement.CategoryOrDefault()
    IReferable.Category
    IReferable.IdShort
    IReferable.DisplayName
    IReferable.Description
    IReferable.OverDisplayNameOrEmpty()
    IReferable.OverDescriptionOrEmpty()
    IHasExtensions.Extensions
    IHasExtensions.OverExtensionsOrEmpty()
    IHasSemantics.SemanticId
    IHasSemantics.SupplementalSemanticIds
    IHasSemantics.OverSupplementalSemanticIdsOrEmpty()
    IQualifiable.Qualifiers
    IQualifiable.OverQualifiersOrEmpty()
    IHasDataSpecification.EmbeddedDataSpecifications
    IHasDataSpecification.OverEmbeddedDataSpecificationsOrEmpty()
    IClass.DescendOnce()
    IClass.Descend()
    IClass.Accept(Visitation.IVisitor)
    IClass.Accept<TContext>(Visitation.IVisitorWithContext<TContext>, TContext)
    IClass.Transform<T>(Visitation.ITransformer<T>)
    IClass.Transform<TContext, T>(Visitation.ITransformerWithContext<TContext, T>, TContext)
    Namespace: AasCore.Aas3_0
    Assembly: AasCore.Aas3_0.dll
    Syntax
    public interface IBlob : IDataElement, ISubmodelElement, IReferable, IHasExtensions, IHasSemantics, IQualifiable, IHasDataSpecification, IClass

    Properties

    | Improve this Doc View Source

    ContentType

    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.

    | Improve this Doc View Source

    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.

    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX