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)
101
consumerType =
WebPartTransformerAttribute
.GetConsumerType(transformerType);
102
providerType =
WebPartTransformerAttribute
.GetProviderType(transformerType);
119
WebPartTransformerAttribute
.GetConsumerType(existingTransformerType);
121
WebPartTransformerAttribute
.GetProviderType(existingTransformerType);
UI\WebParts\WebPartConnection.cs (2)
325
Type transformerConsumerType =
WebPartTransformerAttribute
.GetConsumerType(transformerType);
326
Type transformerProviderType =
WebPartTransformerAttribute
.GetProviderType(transformerType);
UI\WebParts\WebPartManager.cs (2)
1350
Type transformerConsumerType =
WebPartTransformerAttribute
.GetConsumerType(transformerType);
1351
Type transformerProviderType =
WebPartTransformerAttribute
.GetProviderType(transformerType);
UI\WebParts\WebPartTransformerAttribute.cs (3)
83
object[] attributes = transformerType.GetCustomAttributes(typeof(
WebPartTransformerAttribute
), true);
87
WebPartTransformerAttribute
attribute = (
WebPartTransformerAttribute
)attributes[0];