2 instantiations of WebPartTransformerAttribute
System.Web (2)
UI\WebParts\RowToFieldTransformer.cs (1)
14[WebPartTransformer(typeof(IWebPartRow), typeof(IWebPartField))]
UI\WebParts\RowToParametersTransformer.cs (1)
16[WebPartTransformer(typeof(IWebPartRow), typeof(IWebPartParameters))]
11 references to WebPartTransformerAttribute
System.Web (11)
Configuration\TransformerInfoCollection.cs (4)
101consumerType = WebPartTransformerAttribute.GetConsumerType(transformerType); 102providerType = WebPartTransformerAttribute.GetProviderType(transformerType); 119WebPartTransformerAttribute.GetConsumerType(existingTransformerType); 121WebPartTransformerAttribute.GetProviderType(existingTransformerType);
UI\WebParts\WebPartConnection.cs (2)
325Type transformerConsumerType = WebPartTransformerAttribute.GetConsumerType(transformerType); 326Type transformerProviderType = WebPartTransformerAttribute.GetProviderType(transformerType);
UI\WebParts\WebPartManager.cs (2)
1350Type transformerConsumerType = WebPartTransformerAttribute.GetConsumerType(transformerType); 1351Type transformerProviderType = WebPartTransformerAttribute.GetProviderType(transformerType);
UI\WebParts\WebPartTransformerAttribute.cs (3)
83object[] attributes = transformerType.GetCustomAttributes(typeof(WebPartTransformerAttribute), true); 87WebPartTransformerAttribute attribute = (WebPartTransformerAttribute)attributes[0];