interface INode

in global :: Sandbox . Html

😔 No documentation found.


public bool IsElement { get; }

😔 No documentation found.

public bool IsText { get; }

😔 No documentation found.

public bool IsComment { get; }

😔 No documentation found.

public bool IsDocument { get; }

😔 No documentation found.

public string OuterHtml { get; }

😔 No documentation found.

public string InnerHtml { get; }

😔 No documentation found.

public IEnumerable<INode> Children { get; }

😔 No documentation found.

public string Name { get; }

😔 No documentation found.

public string GetAttribute( string name, string def = )

😔 No documentation found.

public int GetAttributeInt( string name, int def = 0 )

😔 No documentation found.

public float GetAttributeFloat( string name, float def = 0 )

😔 No documentation found.

public bool GetAttributeBool( string name, bool def = False )

😔 No documentation found.

public T GetAttribute( string name, T def = null )

😔 No documentation found.

public static INode Parse( string html )

😔 No documentation found.