1 write to Type
System.ServiceModel (1)
System\ServiceModel\Configuration\ExtensionElement.cs (1)
37this.Type = type;
22 references to Type
System.ServiceModel (22)
System\ServiceModel\Configuration\BindingCollectionElement.cs (2)
69if (collectionElement.Type.Equals(extensionSectionType.AssemblyQualifiedName, StringComparison.Ordinal)) 77Type collectionElementType = Type.GetType(collectionElement.Type, false);
System\ServiceModel\Configuration\BindingsSection.cs (1)
281Type extensionType = Type.GetType(bindingExtension.Type, false);
System\ServiceModel\Configuration\ConfigurationHelpers.cs (1)
349values.Add("ExtensionType", extensionElement.Type);
System\ServiceModel\Configuration\CustomBindingCollectionElement.cs (2)
63BindingElementExtensionElement bindingElementExtension = Activator.CreateInstance(Type.GetType(element.Type, true)) as BindingElementExtensionElement; 67element.Type,
System\ServiceModel\Configuration\EndpointCollectionElement.cs (2)
71if (collectionElement.Type.Equals(extensionSectionType.AssemblyQualifiedName, StringComparison.Ordinal)) 79Type collectionElementType = Type.GetType(collectionElement.Type, false);
System\ServiceModel\Configuration\ExtensionElement.cs (1)
77this.typeName = GetTypeName(this.Type);
System\ServiceModel\Configuration\ExtensionElementCollection.cs (7)
62element.Type.Equals(oldElement.Type, StringComparison.Ordinal)) 83if (element.Type.Equals(extension.Type, StringComparison.OrdinalIgnoreCase)) 91Type elementType = Type.GetType(element.Type, false); 92if (null != elementType && elementType.Equals(Type.GetType(extension.Type, false))) 101SR.GetString(SR.ConfigDuplicateExtensionType, element.Type)));
System\ServiceModel\Configuration\ServiceModelExtensionCollectionElement.cs (2)
381Type elementType = Type.GetType(element.Type, false); 384throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ConfigurationErrorsException(SR.GetString(SR.ConfigInvalidType, element.Type, element.Name),
System\ServiceModel\Configuration\ServiceModelExtensionElement.cs (3)
50string extensionTypeName = extensionElement.Type; 240if (collectionElement.Type.Equals(extensionSectionType.AssemblyQualifiedName, StringComparison.Ordinal)) 248Type collectionElementType = Type.GetType(collectionElement.Type, false);
System\ServiceModel\Configuration\StandardEndpointsSection.cs (1)
182Type extensionType = Type.GetType(endpointExtension.Type, false);