System.Xml.AttributePSVIInfo.Reset C# (CSharp) Méthode

Reset() private méthode

private Reset ( ) : void
Résultat void
        internal void Reset()
        {
            typedAttributeValue = null;
            localName = string.Empty;
            namespaceUri = string.Empty;
            attributeSchemaInfo.Clear();
        }
    }

Usage Example

Exemple #1
0
        internal void Clear(XmlNodeType nodeType)
        {
            _nodeType     = nodeType;
            _localName    = string.Empty;
            _prefix       = string.Empty;
            _namespaceUri = string.Empty;
            _rawValue     = string.Empty;

            _attributePSVIInfo?.Reset();

            _nameWPrefix = null;
            _lineNo      = 0;
            _linePos     = 0;
        }
All Usage Examples Of System.Xml.AttributePSVIInfo::Reset