[]
Initializes a new instance of the Tag class with the specified name and value.
public Tag(string name, object value)
Public Sub New(name As String, value As Object)
| Type | Name | Description |
|---|---|---|
| string | name | The name of the tag. |
| object | value | The value of the tag. |
Initializes a new instance of the Tag class with the specified name.
public Tag(string name)
Public Sub New(name As String)
| Type | Name | Description |
|---|---|---|
| string | name | The name of the tag. |
Initializes a new instance of the Tag class with the specified name, value and type.
public Tag(string name, object value, Type type)
Public Sub New(name As String, value As Object, type As Type)
| Type | Name | Description |
|---|---|---|
| string | name | The name of the tag. |
| object | value | The value of the tag. |
| Type | type | The type of the tag. |