Opc.Ua.XmlDecoder.BeginField C# (CSharp) Method

BeginField() private method

Reads the start of filed where the presences of the xsi:nil attribute is not significant.
private BeginField ( string fieldName, bool isOptional ) : bool
fieldName string
isOptional bool
return bool
        private bool BeginField(string fieldName, bool isOptional)
        {
            bool isNil = false;
            return BeginField(fieldName, isOptional, out isNil);
        }

Same methods

XmlDecoder::BeginField ( string fieldName, bool isOptional, bool &isNil ) : bool