//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------ using System.IdentityModel.Tokens; namespace System.IdentityModel.Metadata { /// /// Defines the Saml metadata base class. /// public abstract class MetadataBase { SigningCredentials _signingCredentials; /// /// Gets or sets the . /// public SigningCredentials SigningCredentials { get { return _signingCredentials; } set { _signingCredentials = value; } } } }