Class CoreWebView2HttpHeadersCollectionIterator
Iterator for a collection of HTTP headers.
public class CoreWebView2HttpHeadersCollectionIterator : IEnumerator<KeyValuePair<string, string>>, IDisposable, IEnumerator
- Inheritance
-
CoreWebView2HttpHeadersCollectionIterator
- Implements
- Inherited Members
Properties
Current
Gets the header in the CoreWebView2HttpRequestHeaders or CoreWebView2HttpResponseHeaders collection at the current position of the enumerator.
public KeyValuePair<string, string> Current { get; }
Property Value
Exceptions
- See Also
HasCurrentHeader
true
when the iterator has not run out of headers.
public bool HasCurrentHeader { get; }
Property Value
Remarks
If the collection over which the iterator is iterating is empty or if the iterator has gone past the end of the collection then this is false
.
- See Also
Methods
Dispose()
public void Dispose()
- See Also
MoveNext()
public bool MoveNext()
Returns
- See Also
Reset()
No COM support; throws NotSupportedException instead.
public void Reset()
Exceptions
- NotSupportedException
No COM support.
- See Also