Opc.Ua.XmlDecoder.BeginField C# (CSharp) Метод

BeginField() приватный Метод

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
Результат 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