1 type derived from UniqueCodeIdentifierScope
System.ServiceModel (1)
System\ServiceModel\Description\UniqueCodeIdentifierScope.cs (1)
118class UniqueCodeNamespaceScope : UniqueCodeIdentifierScope
3 instantiations of UniqueCodeIdentifierScope
System.ServiceModel (3)
System\ServiceModel\Description\OperationGenerator.cs (1)
560this.memberScope = new UniqueCodeIdentifierScope();
System\ServiceModel\Description\ServiceContractGenerator.cs (2)
297this.contractMemberScope = new UniqueCodeIdentifierScope(); 298this.callbackMemberScope = isDuplex ? new UniqueCodeIdentifierScope() : null;
5 references to UniqueCodeIdentifierScope
System.ServiceModel (5)
System\ServiceModel\Description\OperationGenerator.cs (2)
497name = UniqueCodeIdentifierScope.MakeValid(name, "param"); 555UniqueCodeIdentifierScope memberScope;
System\ServiceModel\Description\ServiceContractGenerator.cs (3)
256UniqueCodeIdentifierScope contractMemberScope; 257UniqueCodeIdentifierScope callbackMemberScope; 326UniqueCodeIdentifierScope memberScope = isCallback ? this.callbackMemberScope : this.contractMemberScope;