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