Show / Hide Table of Contents

Class DescribedValue

A described value consist of a descriptor and a value. Both of them are valid AMQP types.

Inheritance
System.Object
Described
DescribedValue
Inherited Members
Described.Encode(ByteBuffer)
Described.Decode(ByteBuffer)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Amqp.Types
Assembly: Amqp.Net.dll
Syntax
public class DescribedValue : Described

Constructors

DescribedValue(Object, Object)

Initializes a described value.

Declaration
public DescribedValue(object descriptor, object value)
Parameters
Type Name Description
System.Object descriptor

The descriptor object.

System.Object value

The value object.

Properties

Descriptor

Gets the descriptor object.

Declaration
public object Descriptor { get; }
Property Value
Type Description
System.Object

Value

Gets the value object.

Declaration
public object Value { get; }
Property Value
Type Description
System.Object

Methods

ToString()

Returns a string that represents the current object.

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()
Back to top Copyright © 2015-2017 Microsoft
Generated by DocFX