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