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