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