Show / Hide Table of Contents

Class DTMapInfo

Class DTMapInfo corresponds to an element of type Map in a DTDL model.

Inheritance
object
DTEntityInfo
DTSchemaInfo
DTComplexSchemaInfo
DTMapInfo
Implements
IEquatable<DTEntityInfo>
IEquatable<DTSchemaInfo>
IEquatable<DTComplexSchemaInfo>
IEquatable<DTMapInfo>
Inherited Members
DTEntityInfo.EntityKind
DTEntityInfo.ChildOf
DTEntityInfo.DefinedIn
DTEntityInfo.Id
DTEntityInfo.UndefinedProperties
DTEntityInfo.LanguageMajorVersion
DTEntityInfo.UndefinedTypes
DTEntityInfo.Description
DTEntityInfo.DisplayName
DTEntityInfo.Comment
DTEntityInfo.ValidateInstance(string)
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: DTDLParser.Models
Assembly: DTDLParser.dll
Syntax
public class DTMapInfo : DTComplexSchemaInfo, IEquatable<DTEntityInfo>, IEquatable<DTSchemaInfo>, IEquatable<DTComplexSchemaInfo>, IEquatable<DTMapInfo>

Properties

| Edit this page View Source

ClassId

Get the DTMI that identifies type Map in the version of DTDL used to define this element.

Declaration
public override Dtmi ClassId { get; }
Property Value
Type Description
Dtmi

The DTMI for the DTDL type Map.

Overrides
DTComplexSchemaInfo.ClassId
| Edit this page View Source

MapKey

Gets the value of the 'mapKey' property of the DTDL element that corresponds to this object.

Declaration
public DTMapKeyInfo MapKey { get; }
Property Value
Type Description
DTMapKeyInfo

The 'mapKey' property of the DTDL element.

| Edit this page View Source

MapValue

Gets the value of the 'mapValue' property of the DTDL element that corresponds to this object.

Declaration
public DTMapValueInfo MapValue { get; }
Property Value
Type Description
DTMapValueInfo

The 'mapValue' property of the DTDL element.

| Edit this page View Source

SupplementalProperties

Gets the supplemantal properties of the DTDL element that corresponds to this object.

Declaration
public override IDictionary<string, object> SupplementalProperties { get; }
Property Value
Type Description
IDictionary<string, object>

A dictionary that maps each string-valued property name to an object that holds the value of the property with the given name.

Overrides
DTComplexSchemaInfo.SupplementalProperties
Remarks

If the property is a literal in the DTDL model, the object holds a literal value. If the property is another DTDL element in the model, the object is the C# object that corresponds to this element.

| Edit this page View Source

SupplementalTypes

Gets a collection of identifiers, each of which is a Dtmi that indicates a supplemental type that applies to the DTDL element that corresponds to this object.

Declaration
public override IReadOnlyCollection<Dtmi> SupplementalTypes { get; }
Property Value
Type Description
IReadOnlyCollection<Dtmi>

A collection of DTMIs indicating the supplemental types that apply to the DTDL element.

Overrides
DTComplexSchemaInfo.SupplementalTypes

Methods

| Edit this page View Source

DeepEquals(DTComplexSchemaInfo)

Compares to another DTComplexSchemaInfo object, recursing through the entire subtree of object properties.

Declaration
public override bool DeepEquals(DTComplexSchemaInfo other)
Parameters
Type Name Description
DTComplexSchemaInfo other

The other DTComplexSchemaInfo object to compare to.

Returns
Type Description
bool

True if equal.

Overrides
DTComplexSchemaInfo.DeepEquals(DTComplexSchemaInfo)
| Edit this page View Source

DeepEquals(DTEntityInfo)

Compares to another DTEntityInfo object, recursing through the entire subtree of object properties.

Declaration
public override bool DeepEquals(DTEntityInfo other)
Parameters
Type Name Description
DTEntityInfo other

The other DTEntityInfo object to compare to.

Returns
Type Description
bool

True if equal.

Overrides
DTComplexSchemaInfo.DeepEquals(DTEntityInfo)
| Edit this page View Source

DeepEquals(DTMapInfo)

Compares to another DTMapInfo object, recursing through the entire subtree of object properties.

Declaration
public virtual bool DeepEquals(DTMapInfo other)
Parameters
Type Name Description
DTMapInfo other

The other DTMapInfo object to compare to.

Returns
Type Description
bool

True if equal.

| Edit this page View Source

DeepEquals(DTSchemaInfo)

Compares to another DTSchemaInfo object, recursing through the entire subtree of object properties.

Declaration
public override bool DeepEquals(DTSchemaInfo other)
Parameters
Type Name Description
DTSchemaInfo other

The other DTSchemaInfo object to compare to.

Returns
Type Description
bool

True if equal.

Overrides
DTComplexSchemaInfo.DeepEquals(DTSchemaInfo)
| Edit this page View Source

Equals(DTComplexSchemaInfo)

Compares to another DTComplexSchemaInfo object.

Declaration
public override bool Equals(DTComplexSchemaInfo other)
Parameters
Type Name Description
DTComplexSchemaInfo other

The other DTComplexSchemaInfo object to compare to.

Returns
Type Description
bool

True if equal.

Overrides
DTComplexSchemaInfo.Equals(DTComplexSchemaInfo)
| Edit this page View Source

Equals(DTEntityInfo)

Compares to another DTEntityInfo object.

Declaration
public override bool Equals(DTEntityInfo other)
Parameters
Type Name Description
DTEntityInfo other

The other DTEntityInfo object to compare to.

Returns
Type Description
bool

True if equal.

Overrides
DTComplexSchemaInfo.Equals(DTEntityInfo)
| Edit this page View Source

Equals(DTMapInfo)

Compares to another DTMapInfo object.

Declaration
public virtual bool Equals(DTMapInfo other)
Parameters
Type Name Description
DTMapInfo other

The other DTMapInfo object to compare to.

Returns
Type Description
bool

True if equal.

| Edit this page View Source

Equals(DTSchemaInfo)

Compares to another DTSchemaInfo object.

Declaration
public override bool Equals(DTSchemaInfo other)
Parameters
Type Name Description
DTSchemaInfo other

The other DTSchemaInfo object to compare to.

Returns
Type Description
bool

True if equal.

Overrides
DTComplexSchemaInfo.Equals(DTSchemaInfo)
| Edit this page View Source

ValidateInstance(JsonElement)

Validate a JsonElement to determine whether it is a JSON object that conforms to the specific Map element defined in the model.

Declaration
public override IReadOnlyCollection<string> ValidateInstance(JsonElement instanceElt)
Parameters
Type Name Description
JsonElement instanceElt

The JsonElement to validate.

Returns
Type Description
IReadOnlyCollection<string>

A list of strings that each indicate a validation failure; the list is empty if the JsonElement conforms.

Overrides
DTEntityInfo.ValidateInstance(JsonElement)

Operators

| Edit this page View Source

operator ==(DTMapInfo, DTMapInfo)

Determines whether two DTMapInfo objects are equal.

Declaration
public static bool operator ==(DTMapInfo x, DTMapInfo y)
Parameters
Type Name Description
DTMapInfo x

One DTMapInfo object to compare.

DTMapInfo y

Another DTMapInfo object to compare to the first.

Returns
Type Description
bool

True if equal.

| Edit this page View Source

operator !=(DTMapInfo, DTMapInfo)

Determines whether two DTMapInfo objects are not equal.

Declaration
public static bool operator !=(DTMapInfo x, DTMapInfo y)
Parameters
Type Name Description
DTMapInfo x

One DTMapInfo object to compare.

DTMapInfo y

Another DTMapInfo object to compare to the first.

Returns
Type Description
bool

True if not equal.

Implements

IEquatable<T>
IEquatable<T>
IEquatable<T>
IEquatable<T>
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX