Returns the field value as string if it is present or null value otherwise.

Namespace: FIXForge.NET.FIX
Assembly: FIXForge.NET.FIX.Engine-net-3.5 (in FIXForge.NET.FIX.Engine-net-3.5.dll) Version: 2.79.1.0

Syntax

C#
public string this[
	int tag
] { get; set; }
Visual Basic
Public Default Property FieldValue ( _
	tag As Integer _
) As String
	Get
	Set
Visual C++
public:
property String^ default[int tag] {
	String^ get (int tag);
	void set (int tag, String^ value);
}

Parameters

tag
Type: System..::..Int32
Tag number.

Return Value

Field value as string if it is present or null value otherwise.

Exceptions

ExceptionCondition
FIXForge.NET.FIX..::..EngineExceptionThe tag number does not belong to the message.

See Also