コード例 #1
0
ファイル: ProxyNamer.cs プロジェクト: ToshB/nservicestub
 private ProxyNamer(INamingScope parentScope, NamingScope wrappedScope, Type serviceContract)
     : this(wrappedScope, serviceContract)
 {
     ParentScope = parentScope;
 }
コード例 #2
0
ファイル: ProxyNamer.cs プロジェクト: ToshB/nservicestub
 public ProxyNamer(NamingScope wrappedScope, Type serviceContract)
 {
     _wrappedScope = wrappedScope;
     _serviceContract = serviceContract;
 }