Mercurial > pub > ImplabNet
annotate Implab.ServiceHost/Unity/DefaultParameterElement.cs @ 275:6fefd5811b9b v3
refactoring
author | cin |
---|---|
date | Fri, 27 Apr 2018 16:57:30 +0300 |
parents | 22629bf26121 |
children | 963b17c275be |
rev | line source |
---|---|
270 | 1 namespace Implab.ServiceHost.Unity |
2 { | |
274 | 3 public class DefaultParameterElement : InjectionParameterElement, ITextValue { |
4 public string Value { | |
5 get { return null; } | |
6 } | |
7 | |
275 | 8 public override void Visit(InjectionValueBuilder builder) { |
274 | 9 builder.Visit(this); |
272 | 10 } |
270 | 11 } |
12 } |