MessageContent Class

Definition

An abstract representation of a single item of thread message content. Please note MessageContent is the base class. According to the scenario, a derived class of the base class might need to be assigned here, or this property needs to be casted to one of the possible derived classes. The available derived classes include MessageImageFileContent and MessageTextContent.

[System.ClientModel.Primitives.PersistableModelProxy(typeof(Azure.AI.OpenAI.Assistants.UnknownMessageContent))]
public abstract class MessageContent : System.ClientModel.Primitives.IJsonModel<Azure.AI.OpenAI.Assistants.MessageContent>, System.ClientModel.Primitives.IPersistableModel<Azure.AI.OpenAI.Assistants.MessageContent>
[<System.ClientModel.Primitives.PersistableModelProxy(typeof(Azure.AI.OpenAI.Assistants.UnknownMessageContent))>]
type MessageContent = class
    interface IJsonModel<MessageContent>
    interface IPersistableModel<MessageContent>
Public MustInherit Class MessageContent
Implements IJsonModel(Of MessageContent), IPersistableModel(Of MessageContent)
Inheritance
MessageContent
Derived
Attributes
Implements

Constructors

MessageContent()

Initializes a new instance of MessageContent.

Explicit Interface Implementations

IJsonModel<MessageContent>.Create(Utf8JsonReader, ModelReaderWriterOptions)

Reads one JSON value (including objects or arrays) from the provided reader and converts it to a model.

IJsonModel<MessageContent>.Write(Utf8JsonWriter, ModelReaderWriterOptions)

Writes the model to the provided Utf8JsonWriter.

IPersistableModel<MessageContent>.Create(BinaryData, ModelReaderWriterOptions)

Converts the provided BinaryData into a model.

IPersistableModel<MessageContent>.GetFormatFromOptions(ModelReaderWriterOptions)

Gets the data interchange format (JSON, Xml, etc) that the model uses when communicating with the service.

IPersistableModel<MessageContent>.Write(ModelReaderWriterOptions)

Writes the model into a BinaryData.

Applies to