Interface IComposite
Represents a composite field.
Namespace: OnixS.SimpleBinaryEncoding
Assembly: OnixS.SimpleBinaryEncoding.dll
Syntax
public interface IComposite
Remarks
A composite field is composed of two or more simple subfields.
Properties
HasValue
Declaration
bool HasValue { get; }
Property Value
Type | Description |
---|---|
bool |
|
this[string]
Gets or sets the subfield value.
Declaration
object this[string name] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
string | name | Subfield name. |
Property Value
Type | Description |
---|---|
object | Subfield value. |
Methods
Reset()
Resets the field to the null
value.
Declaration
void Reset()