2 writes to Type
System.ServiceModel (1)
System\ServiceModel\ServiceBehaviorAttribute.cs (1)
450dispatch.Type = serviceType;
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\ServiceDiscoveryBehavior.cs (1)
144dispatchRuntime.Type = discoveryService.GetType();
13 references to Type
System.ServiceModel (13)
System\ServiceModel\Channels\ServiceChannel.cs (2)
1827if (behavior.Type != null) 1829values["ServiceType"] = behavior.Type.AssemblyQualifiedName;
System\ServiceModel\Dispatcher\DispatchOperationRuntime.cs (5)
108if ((operation.Parent.InstanceProvider == null) && (operation.Parent.Type != null)) 113this.ValidateInstanceType(operation.Parent.Type, sync.Method); 119this.ValidateInstanceType(operation.Parent.Type, async.BeginMethod); 120this.ValidateInstanceType(operation.Parent.Type, async.EndMethod); 126this.ValidateInstanceType(operation.Parent.Type, task.TaskMethod);
System\ServiceModel\Dispatcher\InstanceBehavior.cs (6)
47if (dispatch.Type != null) 49constructor = InstanceBehavior.GetConstructor(dispatch.Type); 54if (dispatch.Type != null && (dispatch.Type.IsAbstract || dispatch.Type.IsInterface)) 70CreateInstanceDelegate creator = util.GenerateCreateInstanceDelegate(dispatch.Type, constructor);