XmlDictionaryReader.ReadInt64Array Method

Definition

Reads the contents of a series of nodes into an array of long integers (Int64).

Overloads

ReadInt64Array(String, String)

Reads the contents of a series of nodes with the given localName and namespaceUri into an array of long integers (Int64).

ReadInt64Array(XmlDictionaryString, XmlDictionaryString)

Reads the contents of a series of nodes with the given localName and namespaceUri into an array of long integers (Int64).

ReadInt64Array(String, String)

Reads the contents of a series of nodes with the given localName and namespaceUri into an array of long integers (Int64).

public:
 virtual cli::array <long> ^ ReadInt64Array(System::String ^ localName, System::String ^ namespaceUri);
public virtual long[] ReadInt64Array (string localName, string namespaceUri);
abstract member ReadInt64Array : string * string -> int64[]
override this.ReadInt64Array : string * string -> int64[]
Public Overridable Function ReadInt64Array (localName As String, namespaceUri As String) As Long()

Parameters

localName
String

The local name of the element.

namespaceUri
String

The namespace URI of the element.

Returns

Int64[]

An array of long integers (Int64).

Remarks

The buffer allocated by this read operation is limited by the MaxArrayLength quota.

Applies to

ReadInt64Array(XmlDictionaryString, XmlDictionaryString)

Reads the contents of a series of nodes with the given localName and namespaceUri into an array of long integers (Int64).

public:
 virtual cli::array <long> ^ ReadInt64Array(System::Xml::XmlDictionaryString ^ localName, System::Xml::XmlDictionaryString ^ namespaceUri);
public virtual long[] ReadInt64Array (System.Xml.XmlDictionaryString localName, System.Xml.XmlDictionaryString namespaceUri);
abstract member ReadInt64Array : System.Xml.XmlDictionaryString * System.Xml.XmlDictionaryString -> int64[]
override this.ReadInt64Array : System.Xml.XmlDictionaryString * System.Xml.XmlDictionaryString -> int64[]
Public Overridable Function ReadInt64Array (localName As XmlDictionaryString, namespaceUri As XmlDictionaryString) As Long()

Parameters

localName
XmlDictionaryString

The local name of the element.

namespaceUri
XmlDictionaryString

The namespace URI of the element.

Returns

Int64[]

An array of long integers (Int64).

Remarks

The buffer allocated by this read operation is limited by the MaxArrayLength quota.

Applies to