Fixing the build, will not add an interceptor twice when it was already added by...
[castle.git] / InversionOfControl / Castle.MicroKernel / Handlers / IExposeDependencyInfo.cs
blob5bee3b8f26b9bc2981bfb665e6219497742231cb
1 // Copyright 2004-2008 Castle Project - http://www.castleproject.org/
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle.MicroKernel.Handlers
17 using System;
18 using System.Collections;
20 /// <summary>
21 /// Might be implemented by a handler
22 /// so it can expose access to dependency information
23 /// which is used to construct meaningful error messages
24 /// </summary>
25 public interface IExposeDependencyInfo
27 /// <summary>
28 /// Returns human readable list of dependencies
29 /// this handler is waiting for.
30 /// <param name="dependenciesChecked">list of the dependecies that was already checked, used to avoid cycles.</param>
31 /// </summary>
32 String ObtainDependencyDetails(IList dependenciesChecked);