Show / Hide Table of Contents

Class Meta

Meta class contains name and value of a single meta data. Could be replaced with a directory data structure.

Inheritance
System.Object
Meta
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: CoreLibrary
Assembly: CoreLibrary.dll
Syntax
public class Meta

Constructors

Meta()

Default constructor of Meta.

Declaration
public Meta()

Meta(String, String)

Constructor for JSON serialization and deserialization. Note that the parameter names must match the attribute names (non case sensitive)

Declaration
[JsonConstructor]
public Meta(string name, string info)
Parameters
Type Name Description
System.String name
System.String info

Properties

Info

Declaration
public string Info { get; set; }
Property Value
Type Description
System.String

Name

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top Generated by DocFX