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