1 type derived from UniqueCodeIdentifierScope
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\UniqueCodeIdentifierScope.cs (1)
118internal class UniqueCodeNamespaceScope : UniqueCodeIdentifierScope
4 instantiations of UniqueCodeIdentifierScope
dotnet-svcutil-lib (4)
CodeDomFixup\CodeDomVisitors\CodeNamespaceUniqueTypeFixer.cs (1)
16var 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)
16var namespaceScope = new UniqueCodeIdentifierScope();
CodeDomFixup\ConfigToCode.cs (1)
37if (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)
495name = UniqueCodeIdentifierScope.MakeValid(name, "param"); 552private UniqueCodeIdentifierScope _memberScope;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceContractGenerator.cs (3)
202private UniqueCodeIdentifierScope _contractMemberScope; 203private UniqueCodeIdentifierScope _callbackMemberScope; 272UniqueCodeIdentifierScope memberScope = isCallback ? _callbackMemberScope : _contractMemberScope;