Interface IComposite
Base interface for composite types.
Namespace: OnixS.SimpleBinaryEncoding
Assembly: OnixS.SimpleBinaryEncoding.dll
Syntax
public interface IComposite
Properties
HasValue
True, if the underlying field has not null value, false otherwise.
Declaration
bool HasValue { get; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
Item[String]
Returns value of composite type field.
Declaration
object this[string name] { get; set; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | Field name |
Property Value
| Type | Description |
|---|---|
| System.Object | Value of composite type field |
Methods
Reset()
Reset field to null value.
Declaration
void Reset()