CoreWebView2HttpHeadersCollectionIterator Class

Definition

Iterator for a collection of HTTP headers.

public class CoreWebView2HttpHeadersCollectionIterator : System.Collections.IEnumerator
public class CoreWebView2HttpHeadersCollectionIterator : System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string,string>>
type CoreWebView2HttpHeadersCollectionIterator = class
    interface IEnumerator
type CoreWebView2HttpHeadersCollectionIterator = class
    interface IEnumerator<KeyValuePair<string, string>>
    interface IDisposable
    interface IEnumerator
Public Class CoreWebView2HttpHeadersCollectionIterator
Implements IEnumerator
Public Class CoreWebView2HttpHeadersCollectionIterator
Implements IEnumerator(Of KeyValuePair(Of String, String))
Inheritance
CoreWebView2HttpHeadersCollectionIterator
Implements

Remarks

See CoreWebView2HttpRequestHeaders and CoreWebView2HttpResponseHeaders.

Properties

Current

Gets the header in the CoreWebView2HttpRequestHeaders or CoreWebView2HttpResponseHeaders collection at the current position of the enumerator.

HasCurrentHeader

true when the iterator has not run out of headers.

Methods

Dispose()

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

MoveNext()

Moves the iterator to the next HTTP header in the collection.

Reset()

No COM support; throws NotSupportedException instead.

Explicit Interface Implementations

IEnumerator.Current

Applies to

See also