FormReader.ReadNextPair Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Reads the next key value pair from the form. For unbuffered data use the async overload instead.
public:
Nullable<System::Collections::Generic::KeyValuePair<System::String ^, System::String ^>> ReadNextPair();
public System.Collections.Generic.KeyValuePair<string,string>? ReadNextPair ();
member this.ReadNextPair : unit -> Nullable<System.Collections.Generic.KeyValuePair<string, string>>
Public Function ReadNextPair () As Nullable(Of KeyValuePair(Of String, String))
Returns
The next key value pair, or null when the end of the form is reached.