PeterO.XEReader

PeterO.XEReader

public sealed class XEReader :
    System.IDisposable

Not documented yet.

Member Summary

IsEmptyElement

public bool IsEmptyElement { get; }

Gets a value indicating whether the currently read element is found to be empty.

Returns:

true if the currently read element is found to be empty; otherwise, false .

Return Value:

A text string.

Item

public string this[string attribute] { get; }

Gets an attribute from the currently read element.

Parameters:

Return Value:

A text string.

LocalName

public string LocalName { get; }

Gets a value not documented yet.

Returns:

A value not documented yet.

Name

public string Name { get; }

Gets a value not documented yet.

Returns:

A value not documented yet.

NamespaceName

public string NamespaceName { get; }

Gets a value not documented yet.

Returns:

A value not documented yet.

Create

public static PeterO.XEReader Create(
    string file);

Not documented yet.

Parameters:

Return Value:

A XEReader object.

Exceptions:

Create

public static PeterO.XEReader Create(
    System.Xml.XmlReader reader);

Not documented yet.

Parameters:

Return Value:

A XEReader object.

Exceptions:

Current

public PeterO.XEReader Current();

Not documented yet.

Return Value:

A XEReader object.

Dispose

public sealed void Dispose();

Not documented yet.

IsElement

public bool IsElement(
    string localName);

Not documented yet.

Parameters:

Return Value:

Either true or false .

IsElement

public bool IsElement(
    string localName,
    string namespaceName);

Not documented yet.

Parameters:

Return Value:

Either true or false .

Exceptions:

MoveNext

public bool MoveNext(
    string localName);

Not documented yet.

Parameters:

Return Value:

Either true or false .

MoveNext

public bool MoveNext(
    string localName,
    string namespaceName);

Not documented yet.

Parameters:

Return Value:

Either true or false .

MoveNext

public bool MoveNext();

Not documented yet.

Return Value:

Either true or false .

ReadContent

public string ReadContent();

Not documented yet.

Return Value:

A text string.

Back to petero-csharp start page.