Show / Hide Table of Contents

Class MessageMetadata

Object that represents metadata for message.

Inheritance
object
MessageMetadata
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.QueueService.Models
Assembly: OCI.DotNetSDK.Queue.dll
Syntax
public class MessageMetadata

Properties

ChannelId

Declaration
[Required(ErrorMessage = "ChannelId is required.")]
[JsonProperty(PropertyName = "channelId")]
public string ChannelId { get; set; }
Property Value
Type Description
string

The channel ID which specifies the channel to publish or retrieve messages.

Remarks

Required

CustomProperties

Declaration
[JsonProperty(PropertyName = "customProperties")]
public Dictionary<string, string> CustomProperties { get; set; }
Property Value
Type Description
Dictionary<string, string>

Additional message properties

In this article
Back to top