3 writes to serviceType
System.ServiceModel (3)
System\ServiceModel\ServiceHost.cs (3)
1671this.serviceType = serviceType; 1691this.serviceType = singletonInstance.GetType(); 2038this.serviceType = serviceType;
12 references to serviceType
System.ServiceModel (12)
System\ServiceModel\ServiceHost.cs (12)
1696ServiceModelActivity.Start(activity, SR.GetString(SR.ActivityConstructServiceHost, serviceType.FullName), ActivityType.Construct); 1756throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SfxReflectedContractKeyNotFoundIMetadataExchange, this.serviceType.FullName))); 1759throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SfxReflectedContractKeyNotFound2, implementedContract.FullName, this.serviceType.FullName))); 1938get { return SR.GetString(SR.ActivityCloseServiceHost, this.serviceType.FullName); } 1943get { return SR.GetString(SR.ActivityOpenServiceHost, this.serviceType.FullName); } 1948if (this.serviceType == null) 1960description = ServiceDescription.GetService(this.serviceType); 1970if ((typeof(IServiceBehavior).IsAssignableFrom(this.serviceType) || typeof(IContractBehavior).IsAssignableFrom(this.serviceType)) 1973serviceInstanceUsedAsABehavior = ServiceDescription.CreateImplementation(this.serviceType); 1986List<Type> interfaces = ServiceReflector.GetInterfaces(this.serviceType); 1999contract = ContractDescription.GetContract(contractType, this.serviceType);