Share via


ResponseParsingBase<T> Class

Definition

Provides a base class that is used internally to parse XML streams from storage service operations.

[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
public abstract class ResponseParsingBase<T> : IDisposable
[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]
type ResponseParsingBase<'T> = class
    interface IDisposable
Public MustInherit Class ResponseParsingBase(Of T)
Implements IDisposable

Type Parameters

T

The type to be parsed.

Inheritance
System.Object
ResponseParsingBase<T>
Derived
Attributes
System.ComponentModel.EditorBrowsableAttribute
Implements
System.IDisposable

Constructors

ResponseParsingBase<T>(Stream)

Initializes a new instance of the ResponseParsingBase class.

Fields

allObjectsParsed

Indicates that all parsable objects have been consumed. This field is reserved and should not be used.

outstandingObjectsToParse

Stores any objects that have not yet been parsed. This field is reserved and should not be used.

reader

The reader used for parsing. This field is reserved and should not be used.

Properties

ObjectsToParse

Gets the parsable objects. This method is reserved and should not be used.

Methods

Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

Dispose(Boolean)

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources, and optional managed resources.

ParseXml()

Parses the XML response. This method is reserved and should not be used.

Variable(Boolean)

This method is reserved and should not be used.

Applies to