Skip to content
This repository has been archived by the owner on Jan 24, 2021. It is now read-only.

Commit

Permalink
Added IHideObjectMembers to all configuration API interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodejunkie committed Aug 23, 2015
1 parent a8254d9 commit cefac6e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace Nancy.Configuration
/// <summary>
/// Defines the functionality for providing default configuration values to the <see cref="INancyEnvironment"/>.
/// </summary>
public interface INancyDefaultConfigurationProvider
public interface INancyDefaultConfigurationProvider : IHideObjectMembers
{
/// <summary>
/// Gets the default configuration instance to register in the <see cref="INancyEnvironment"/>.
Expand Down
2 changes: 1 addition & 1 deletion src/Nancy/Configuration/INancyEnvironment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Nancy.Configuration
/// <summary>
/// Defines the functionality of a Nancy environment.
/// </summary>
public interface INancyEnvironment : IReadOnlyDictionary<string, object>
public interface INancyEnvironment : IReadOnlyDictionary<string, object>, IHideObjectMembers
{
/// <summary>
/// Adds a <paramref name="value"/>, using a provided <paramref name="key"/>, to the environment.
Expand Down
2 changes: 1 addition & 1 deletion src/Nancy/Configuration/INancyEnvironmentConfigurator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Nancy.Configuration
/// <summary>
/// Defines the functionality for applying configuration to an <see cref="INancyEnvironment"/> instance.
/// </summary>
public interface INancyEnvironmentConfigurator
public interface INancyEnvironmentConfigurator : IHideObjectMembers
{
/// <summary>
/// Configures an <see cref="INancyEnvironment"/> instance.
Expand Down
2 changes: 1 addition & 1 deletion src/Nancy/Configuration/INancyEnvironmentFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace Nancy.Configuration
/// <summary>
/// Defines the functionality for creating a <see cref="INancyEnvironment"/> instance.
/// </summary>
public interface INancyEnvironmentFactory
public interface INancyEnvironmentFactory : IHideObjectMembers
{
/// <summary>
/// Creates a new <see cref="INancyEnvironment"/> instance.
Expand Down

0 comments on commit cefac6e

Please sign in to comment.