//-----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------
namespace System.IdentityModel.Tokens
{
using System;
using System.Collections.ObjectModel;
///
/// Represents the Advice element specified in [Saml2Core, 2.6.1].
///
///
/// This information MAY be ignored by applications without affecting either
/// the semantics or the validity of the assertion. [Saml2Core, 2.6.1]
///
public class Saml2Advice
{
private Collection assertionIdReferences = new Collection();
private Collection assertions = new Collection();
private AbsoluteUriCollection assertionUriReferences = new AbsoluteUriCollection();
///
/// Creates an instance of Saml2Advice.
///
public Saml2Advice()
{
}
///
/// Gets a collection of representating the assertions in the .
///
public Collection AssertionIdReferences
{
get { return this.assertionIdReferences; }
}
///
/// Gets a collection of representating the assertions in the .
///
public Collection Assertions
{
get { return this.assertions; }
}
///
/// Gets a collection of representing the assertions in the .
///
public Collection AssertionUriReferences
{
get { return this.assertionUriReferences; }
}
}
}