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