AbstractMemberInjection.cs
9 lines
| 314 B
| text/x-csharp
|
CSharpLexer
cin
|
r277 | using System; | |
namespace Implab.ServiceHost.Unity { | |||
/// <summary> | |||
/// Base class for injections, each injection is applied to the type registration context. | |||
/// </summary> | |||
public abstract class AbstractMemberInjection { | |||
internal abstract void Visit(TypeRegistrationBuilder context); | |||
} | |||
} |