1 type derived from UniqueCodeIdentifierScope
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\UniqueCodeIdentifierScope.cs (1)
118
internal class UniqueCodeNamespaceScope :
UniqueCodeIdentifierScope
4 instantiations of UniqueCodeIdentifierScope
dotnet-svcutil-lib (4)
CodeDomFixup\CodeDomVisitors\CodeNamespaceUniqueTypeFixer.cs (1)
16
var namespaceScope = new
UniqueCodeIdentifierScope
();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationGenerator.cs (1)
557
_memberScope = new
UniqueCodeIdentifierScope
();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceContractGenerator.cs (2)
243
_contractMemberScope = new
UniqueCodeIdentifierScope
();
244
_callbackMemberScope = isDuplex ? new
UniqueCodeIdentifierScope
() : null;
7 references to UniqueCodeIdentifierScope
dotnet-svcutil-lib (7)
CodeDomFixup\CodeDomVisitors\CodeNamespaceUniqueTypeFixer.cs (1)
16
var
namespaceScope = new UniqueCodeIdentifierScope();
CodeDomFixup\ConfigToCode.cs (1)
37
if (contractName.EndsWith(endpoint.Contract.Name, StringComparison.Ordinal) || contractName.EndsWith(
UniqueCodeIdentifierScope
.MakeValid(endpoint.Contract.CodeName, endpoint.Contract.CodeName), StringComparison.Ordinal))
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationGenerator.cs (2)
495
name =
UniqueCodeIdentifierScope
.MakeValid(name, "param");
552
private
UniqueCodeIdentifierScope
_memberScope;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceContractGenerator.cs (3)
202
private
UniqueCodeIdentifierScope
_contractMemberScope;
203
private
UniqueCodeIdentifierScope
_callbackMemberScope;
272
UniqueCodeIdentifierScope
memberScope = isCallback ? _callbackMemberScope : _contractMemberScope;