11 references to BaseType
dotnet-svcutil-lib (11)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceReflector.cs (4)
416for (service = service.BaseType(); service != null; service = service.BaseType()) 436for (service = service.BaseType(); service != null; service = service.BaseType())
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (6)
107for (Type service = actualContractType.BaseType(); service != null; service = service.BaseType()) 124for (Type u = actualContractType.BaseType(); u != null; u = u.BaseType()) 1293for (Type baseType = typedMessageType; baseType != null && baseType != typeof(object) && baseType != typeof(ValueType); baseType = baseType.BaseType()) 1983for (Type currentType = serviceType; currentType != null; currentType = currentType.BaseType())
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\FaultFormatter.cs (1)
44for (Type faultType = faultException.GetType(); faultType != typeof(FaultException); faultType = faultType.BaseType())