File size: 996 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Collections.ObjectModel;
namespace Microsoft.PowerShell.Cmdletization
{
/// <summary>
/// Collection of method parameters and their arguments
/// used to invoke a method in an object model wrapped by <see cref="CmdletAdapter<TObjectInstance>"/>
/// </summary>
internal sealed class MethodParametersCollection : KeyedCollection<string, MethodParameter>
{
/// <summary>
/// Creates an empty collection of method parameters.
/// </summary>
public MethodParametersCollection()
: base(StringComparer.Ordinal, 5)
{
}
/// <summary>
/// Gets key for a method parameter.
/// </summary>
/// <param name="item"></param>
/// <returns></returns>
protected override string GetKeyForItem(MethodParameter item)
{
return item.Name;
}
}
}
|