1 write to CustomAttributes
System.Web.Services (1)
System\Web\Services\Description\WebCodeGenerator.cs (1)
191param.CustomAttributes = parameterAttributes[i];
16 references to CustomAttributes
System (8)
compmod\microsoft\csharp\csharpcodeprovider.cs (2)
1792if (e.CustomAttributes.Count > 0) { 1794GenerateAttributes(e.CustomAttributes, null, true);
compmod\microsoft\visualbasic\VBCodeProvider.cs (2)
1424if (e.CustomAttributes.Count > 0) { 1425OutputAttributes(e.CustomAttributes, true);
compmod\system\codedom\compiler\CodeGenerator.cs (2)
1474if (e.CustomAttributes.Count > 0) { 1475OutputAttributeDeclarations(e.CustomAttributes);
compmod\system\codedom\compiler\CodeValidator.cs (2)
771if (e.CustomAttributes.Count > 0) { 772ValidateAttributes(e.CustomAttributes);
System.ServiceModel (1)
System\ServiceModel\Description\OperationGenerator.cs (1)
508return paramDecl.CustomAttributes;
System.Web (3)
Compilation\ObjectFactoryCodeDomTreeGenerator.cs (1)
171foreach (CodeAttributeDeclaration attr in paramExpr.CustomAttributes) {
Compilation\TemplateControlCodeDomTreeGenerator.cs (2)
309parameterExpr.CustomAttributes.Add(customAttrExpr); 314parameterExpr.CustomAttributes.Add(defaultValAttrExpr);
System.Web.Extensions (2)
Compilation\WCFModel\VSWCFServiceContractGenerator.cs (2)
1755if (!IsDefinedInCodeAttributeCollection(typeof(System.Runtime.InteropServices.OutAttribute), parameter.CustomAttributes)) 1757parameter.CustomAttributes.Add(OutAttribute);
System.Web.Services (1)
System\Web\Services\Description\HttpProtocolImporter.cs (1)
167AppendMetadata(parameters[i].Attributes, mainCodeMethod.Parameters[i].CustomAttributes);
System.Workflow.Activities (1)
WebServiceReceive.cs (1)
813paramDecl.CustomAttributes.Add(new CodeAttributeDeclaration(new CodeTypeReference(typeof(System.Runtime.InteropServices.OutAttribute))));