Files
linux-packaging-mono/external/aspnetwebstack/src/System.Net.Http.Formatting/Formatting/DelegatingEnumerable.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

69 lines
2.8 KiB
C#

// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
namespace System.Net.Http.Formatting
{
/// <summary>
/// Helper class to serialize <see cref="IEnumerable{T}"/> types by delegating them through a concrete implementation."/>.
/// </summary>
/// <typeparam name="T">The interface implementing <see cref="IEnumerable{T}"/> to proxy.</typeparam>
[SuppressMessage("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix", Justification = "Enumerable conveys the meaning of collection")]
public sealed class DelegatingEnumerable<T> : IEnumerable<T>
{
private IEnumerable<T> _source;
/// <summary>
/// Initialize a DelegatingEnumerable. This constructor is necessary for <see cref="System.Runtime.Serialization.DataContractSerializer"/> to work.
/// </summary>
public DelegatingEnumerable()
{
_source = Enumerable.Empty<T>();
}
/// <summary>
/// Initialize a DelegatingEnumerable with an <see cref="IEnumerable{T}"/>. This is a helper class to proxy <see cref="IEnumerable{T}"/> interfaces for <see cref="System.Xml.Serialization.XmlSerializer"/>.
/// </summary>
/// <param name="source">The <see cref="IEnumerable{T}"/> instance to get the enumerator from.</param>
public DelegatingEnumerable(IEnumerable<T> source)
{
if (source == null)
{
throw new ArgumentNullException("source");
}
_source = source;
}
/// <summary>
/// Get the enumerator of the associated <see cref="IEnumerable{T}"/>.
/// </summary>
/// <returns>The enumerator of the <see cref="IEnumerable{T}"/> source.</returns>
public IEnumerator<T> GetEnumerator()
{
return _source.GetEnumerator();
}
/// <summary>
/// This method is not implemented but is required method for serialization to work. Do not use.
/// </summary>
/// <param name="item">The item to add. Unused.</param>
[SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", Justification = "Required by XmlSerializer, never used.")]
public void Add(object item)
{
throw new NotImplementedException();
}
/// <summary>
/// Get the enumerator of the associated <see cref="IEnumerable{T}"/>.
/// </summary>
/// <returns>The enumerator of the <see cref="IEnumerable{T}"/> source.</returns>
IEnumerator IEnumerable.GetEnumerator()
{
return _source.GetEnumerator();
}
}
}