System.Xml.XsdValidatingReader.GetValueAsync C# (CSharp) Method

GetValueAsync() public method

public GetValueAsync ( ) : Task
return Task
        public override Task<string> GetValueAsync()
        {
            if ((int)_validationState < 0)
            {
                return Task.FromResult(_cachedNode.RawValue);
            }
            return _coreReader.GetValueAsync();
        }
XsdValidatingReader