//----------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------- namespace System.IdentityModel.Tokens { using System; /// /// Represents the StatementAbstractType specified in [Saml2Core, 2.7.1]. /// /// /// This abstract class provides no operations; however, this type is used /// to declare collections of statements, for example Saml2Assertion.Statements. /// public abstract class Saml2Statement { } }