7 instantiations of TypeLoader
System.ServiceModel (7)
System\ServiceModel\ChannelFactory.cs (1)
655this.typeLoader = new TypeLoader();
System\ServiceModel\ComIntegration\ComPlusTypeLoader.cs (1)
365TypeLoader typeLoader = new TypeLoader();
System\ServiceModel\ComIntegration\TypedServiceChannelBuilder.cs (1)
147TypeLoader loader = new TypeLoader();
System\ServiceModel\Description\ContractDescription.cs (3)
157TypeLoader typeLoader = new TypeLoader(); 169TypeLoader typeLoader = new TypeLoader(); 182TypeLoader typeLoader = new TypeLoader();
System\ServiceModel\Description\TypedMessageConverter.cs (1)
66TypeLoader typeLoader = new TypeLoader();
31 references to TypeLoader
System.ServiceModel (31)
System\ServiceModel\ChannelFactory.cs (2)
524TypeLoader typeLoader; 649internal TypeLoader TypeLoader
System\ServiceModel\ComIntegration\ComPlusTypeLoader.cs (5)
142DataContractSerializerOperationBehavior contractSerializer = new DataContractSerializerOperationBehavior(operation, TypeLoader.DefaultDataContractFormatAttribute); 175XmlName returnValueName = TypeLoader.GetReturnValueName(operationName); 304Type parameterType = TypeLoader.GetParameterType(parameter); 329messageDescription.Body.WrapperName = TypeLoader.GetBodyWrapperResponseName(xmlName).EncodedName; 365TypeLoader typeLoader = new TypeLoader();
System\ServiceModel\ComIntegration\MexServiceChannelBuilder.cs (1)
182operation.Formatter = new DataContractSerializerOperationFormatter(opDesc, TypeLoader.DefaultDataContractFormatAttribute, null);
System\ServiceModel\ComIntegration\TypedServiceChannelBuilder.cs (1)
147TypeLoader loader = new TypeLoader();
System\ServiceModel\ComIntegration\WsdlServiceChannelBuilder.cs (1)
176operation.Formatter = new DataContractSerializerOperationFormatter(opDesc, TypeLoader.DefaultDataContractFormatAttribute, null);
System\ServiceModel\Description\ContractDescription.cs (3)
157TypeLoader typeLoader = new TypeLoader(); 169TypeLoader typeLoader = new TypeLoader(); 182TypeLoader typeLoader = new TypeLoader();
System\ServiceModel\Description\DataContractSerializerOperationGenerator.cs (1)
82if (dataContractFormatAttribute.Style != TypeLoader.DefaultDataContractFormatAttribute.Style)
System\ServiceModel\Description\MessageContractImporter.cs (2)
567response.Body.WrapperName = TypeLoader.GetBodyWrapperResponseName(operation.Name).EncodedName; 2149return TypeLoader.DefaultXmlSerializerFormatAttribute.IsEncoded;
System\ServiceModel\Description\OperationGenerator.cs (2)
262ParameterizedMessageHelper.GenerateMessageParameterAttribute(this.Response.Body.ReturnValue, this.EndMethod.ReturnTypeCustomAttributes, TypeLoader.GetReturnValueName(this.DefaultName), this.DefaultNS); 921if (!String.Equals(parent.Response.Body.WrapperName, TypeLoader.GetBodyWrapperResponseName(defaultName).EncodedName, StringComparison.Ordinal))
System\ServiceModel\Description\ParameterXPathQueryGenerator.cs (1)
39operationName += TypeLoader.ResponseSuffix;
System\ServiceModel\Description\ServiceDescription.cs (3)
122System.ServiceModel.Description.TypeLoader.ApplyServiceInheritance<IServiceBehavior, KeyedByTypeCollection<IServiceBehavior>>( 147TypeLoader.DefaultBindingFlags, null, Type.EmptyTypes, null); 166TypeLoader.DefaultBindingFlags, null, null, System.Globalization.CultureInfo.InvariantCulture);
System\ServiceModel\Description\TypedMessageConverter.cs (3)
16return Create(messageContract, action, null, TypeLoader.DefaultDataContractFormatAttribute); 21return Create(messageContract, action, defaultNamespace, TypeLoader.DefaultDataContractFormatAttribute); 66TypeLoader typeLoader = new TypeLoader();
System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (3)
243XmlSerializerFormatAttribute contractFormatAttribute = contractType != null ? TypeLoader.GetFormattingAttribute(contractType, null) as XmlSerializerFormatAttribute : null; 244return TypeLoader.GetFormattingAttribute(operation.OperationMethod, contractFormatAttribute) as XmlSerializerFormatAttribute; 398XmlName responseName = TypeLoader.GetBodyWrapperResponseName(this.Operation.Name);
System\ServiceModel\Dispatcher\InvokerUtil.cs (1)
260parameterLocals[i] = ilg.DeclareLocal(TypeLoader.GetParameterType(parameters[i]), "param" + i.ToString(CultureInfo.InvariantCulture));
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (2)
439ret = GetDefaultParameterValue(TypeLoader.GetParameterType(this.returnParam)); 453args[parameters[i].Position] = GetDefaultParameterValue(TypeLoader.GetParameterType(parameters[i]));