//-----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------
namespace System.IdentityModel.Configuration
{
using System.Xml;
///
/// Types that implement ICustomIdentityConfiguration can load custom configuration
///
public interface ICustomIdentityConfiguration
{
///
/// Override LoadCustomConfiguration to provide custom handling of configuration elements
///
/// Xml Nodes which contain custom configuration
void LoadCustomConfiguration(XmlNodeList nodeList);
}
}