Class ArrayFieldValue
Represents an arrayfield
Namespace: RosNet.Field
Assembly: RosNet.dll
Syntax
public class ArrayFieldValue : FieldValue
Constructors
| Improve this Doc View SourceArrayFieldValue(String, List<FieldValue>, PrimitiveType)
Creates an arrayfieldvalue with name and list of fields in array. Sets datatype to ARRAY.
Declaration
public ArrayFieldValue(string name, List<FieldValue> arrayFields, PrimitiveType primitiveType)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
List<FieldValue> | arrayFields | |
PrimitiveType | primitiveType |
ArrayFieldValue(String, List<FieldValue>, PrimitiveType, UInt32)
Creates an arrayfieldvalue with name, list of fields in array and fixed length of array. Sets datatype to ARRAY.
Declaration
public ArrayFieldValue(string name, List<FieldValue> arrayFields, PrimitiveType primitiveType, uint fixedArrayLength)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
List<FieldValue> | arrayFields | |
PrimitiveType | primitiveType | |
System.UInt32 | fixedArrayLength |
Properties
| Improve this Doc View SourceArrayFields
Declaration
public List<FieldValue> ArrayFields { get; set; }
Property Value
Type | Description |
---|---|
List<FieldValue> |
FixedArrayLength
Declaration
public uint FixedArrayLength { get; }
Property Value
Type | Description |
---|---|
System.UInt32 |
Methods
| Improve this Doc View SourceGetByteLength()
Finds the byte length of the array using fields in array
Declaration
public override int GetByteLength()
Returns
Type | Description |
---|---|
System.Int32 | byte length of array |
Overrides
| Improve this Doc View SourceToString()
Creates string with values
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | string with values |