15 references to AttributeType
dotnet-svcutil-lib (15)
CodeDomFixup\CodeDomHelpers.cs (1)
41
return MatchType<T>(attr.
AttributeType
);
CodeDomFixup\CodeDomVisitors\AttributeFixer.cs (5)
63
if (CodeDomHelpers.MatchType(attr.
AttributeType
, typeof(ServiceContractAttribute)))
67
else if (CodeDomHelpers.MatchType(attr.
AttributeType
, typeof(OperationContractAttribute)))
71
else if (CodeDomHelpers.MatchType(attr.
AttributeType
, typeof(FaultContractAttribute)))
75
else if (CodeDomHelpers.MatchType(attr.
AttributeType
, typeof(GeneratedCodeAttribute)))
112
if (CodeDomHelpers.MatchType(attr.
AttributeType
, s_attrsToRemove[i]))
CodeDomFixup\CodeDomVisitors\CodeDomVisitor.cs (1)
111
Enumerate(attr.
AttributeType
);
CodeDomFixup\CodeDomVisitors\CreateCallbackImpl.cs (1)
500
if (CodeDomHelpers.MatchType(attr.
AttributeType
, typeof(ServiceContractAttribute)))
CodeDomFixup\CodeDomVisitors\RemoveSyncMethodsFromInterface.cs (1)
36
if (!CodeDomHelpers.MatchType<OperationContractAttribute>(attr.
AttributeType
))
FrameworkFork\Microsoft.CodeDom\Compiler\CodeValidator.cs (1)
185
ValidateTypeReference(current.
AttributeType
);
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (2)
3531
if (current.
AttributeType
!= null)
3533
Output.Write(GetTypeOutput(current.
AttributeType
));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityAttributeGenerationHelper.cs (1)
21
if (attribute.
AttributeType
.BaseType == refT.BaseType)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DataContractSerializerOperationGenerator.cs (1)
189
if (attr.
AttributeType
.BaseType == s_dataContractAttributeTypeRef.BaseType)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\OperationGenerator.cs (1)
757
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ParameterModeException(string.Format(SRServiceModel.SfxUseTypedMessageForCustomAttributes, setting.Name, localAttributes[0].
AttributeType
.BaseType)));