[Modify] Edit it
This commit is contained in:
parent
160c57fb82
commit
a058d53475
@ -581,16 +581,16 @@ namespace WebSocketSharp.Net
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Copies the elements of the collection to the specified array of <see cref="Cookie"/>,
|
/// Copies the elements of the collection to the specified array,
|
||||||
/// starting at the specified <paramref name="index"/> in the <paramref name="array"/>.
|
/// starting at the specified index of the array.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="array">
|
/// <param name="array">
|
||||||
/// An array of <see cref="Cookie"/> that represents the destination of the elements
|
/// An array of <see cref="Cookie"/> that specifies the destination of
|
||||||
/// copied from the collection.
|
/// the elements copied from the collection.
|
||||||
/// </param>
|
/// </param>
|
||||||
/// <param name="index">
|
/// <param name="index">
|
||||||
/// An <see cref="int"/> that represents the zero-based index in <paramref name="array"/>
|
/// An <see cref="int"/> that specifies the zero-based index of
|
||||||
/// at which copying begins.
|
/// the array at which copying starts.
|
||||||
/// </param>
|
/// </param>
|
||||||
/// <exception cref="ArgumentNullException">
|
/// <exception cref="ArgumentNullException">
|
||||||
/// <paramref name="array"/> is <see langword="null"/>.
|
/// <paramref name="array"/> is <see langword="null"/>.
|
||||||
@ -599,8 +599,8 @@ namespace WebSocketSharp.Net
|
|||||||
/// <paramref name="index"/> is less than zero.
|
/// <paramref name="index"/> is less than zero.
|
||||||
/// </exception>
|
/// </exception>
|
||||||
/// <exception cref="ArgumentException">
|
/// <exception cref="ArgumentException">
|
||||||
/// The number of elements in the collection is greater than the available space from
|
/// The space from <paramref name="index"/> to the end of
|
||||||
/// <paramref name="index"/> to the end of the destination <paramref name="array"/>.
|
/// <paramref name="array"/> is not enough to copy to.
|
||||||
/// </exception>
|
/// </exception>
|
||||||
public void CopyTo (Cookie[] array, int index)
|
public void CopyTo (Cookie[] array, int index)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user