//-----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------
namespace System.IdentityModel.Protocols.WSTrust
{
using System.Collections.ObjectModel;
///
/// This class is used to represent a collection of the RequestClaims inside RequestSecurityToken.
///
public class RequestClaimCollection : Collection
{
string _dialect = WSIdentityConstants.Dialect;
///
/// Instantiates an empty requested claim collection.
///
public RequestClaimCollection()
{
}
///
/// Gets or sets the Claims dialect attribute.
///
public string Dialect
{
get
{
return _dialect;
}
set
{
_dialect = value;
}
}
}
}