/src/LinFu.IoC/Interfaces/IServiceInstance.cs
http://github.com/philiplaureano/LinFu · C# · 19 lines · 8 code · 1 blank · 10 comment · 0 complexity · 42100c38ced14532c71aaf19c79716a5 MD5 · raw file
- namespace LinFu.IoC.Interfaces
- {
- /// <summary>
- /// A type that represents a service instance returned by a container.
- /// </summary>
- public interface IServiceInstance
- {
- /// <summary>
- /// Gets the value indicating the <see cref="IServiceInfo" /> instance
- /// that describes the service instance itself.
- /// </summary>
- IServiceInfo ServiceInfo { get; }
- /// <summary>
- /// Gets the value indicating the service instance itself.
- /// </summary>
- object Object { get; }
- }
- }