Quick fix: Clean up `HeaderDictionary` doc comments
- remove incorrect use of `Microsoft.AspNetCore.Http.Internal` namespace
This commit is contained in:
parent
02f30afc0e
commit
4052c26a73
|
|
@ -144,7 +144,8 @@ namespace Microsoft.AspNetCore.Server.WebListener
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Copies the <see cref="T:HeaderDictionary" /> elements to a one-dimensional Array instance at the specified index.
|
/// Copies the <see cref="T:HeaderDictionary" /> elements to a one-dimensional Array instance at the specified index.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="array">The one-dimensional Array that is the destination of the specified objects copied from the <see cref="T:Microsoft.AspNetCore.Http.Internal.HeaderDictionary" />.</param>
|
/// <param name="array">The one-dimensional Array that is the destination of the specified objects copied from
|
||||||
|
/// the <see cref="T:HeaderDictionary" />.</param>
|
||||||
/// <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
|
/// <param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
|
||||||
public void CopyTo(KeyValuePair<string, StringValues>[] array, int arrayIndex)
|
public void CopyTo(KeyValuePair<string, StringValues>[] array, int arrayIndex)
|
||||||
{
|
{
|
||||||
|
|
@ -185,7 +186,7 @@ namespace Microsoft.AspNetCore.Server.WebListener
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns an enumerator that iterates through a collection.
|
/// Returns an enumerator that iterates through a collection.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
|
/// <returns>An <see cref="T:IEnumerator" /> object that can be used to iterate through the collection.</returns>
|
||||||
public IEnumerator GetEnumerator()
|
public IEnumerator GetEnumerator()
|
||||||
{
|
{
|
||||||
return Store.GetEnumerator();
|
return Store.GetEnumerator();
|
||||||
|
|
@ -194,7 +195,7 @@ namespace Microsoft.AspNetCore.Server.WebListener
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns an enumerator that iterates through a collection.
|
/// Returns an enumerator that iterates through a collection.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>An <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection.</returns>
|
/// <returns>An <see cref="T:IEnumerator" /> object that can be used to iterate through the collection.</returns>
|
||||||
IEnumerator<KeyValuePair<string, StringValues>> IEnumerable<KeyValuePair<string, StringValues>>.GetEnumerator()
|
IEnumerator<KeyValuePair<string, StringValues>> IEnumerable<KeyValuePair<string, StringValues>>.GetEnumerator()
|
||||||
{
|
{
|
||||||
return Store.GetEnumerator();
|
return Store.GetEnumerator();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue