forked from dotnet/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAttributeCallbackBuilder.xml
268 lines (246 loc) · 13.5 KB
/
AttributeCallbackBuilder.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
<Type Name="AttributeCallbackBuilder" FullName="System.Activities.Presentation.Metadata.AttributeCallbackBuilder">
<TypeSignature Language="C#" Value="public sealed class AttributeCallbackBuilder" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed beforefieldinit AttributeCallbackBuilder extends System.Object" />
<TypeSignature Language="DocId" Value="T:System.Activities.Presentation.Metadata.AttributeCallbackBuilder" />
<AssemblyInfo>
<AssemblyName>System.Activities.Presentation</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>Provides access to add attributes for one specific type to one specific <see cref="T:System.Activities.Presentation.Metadata.AttributeTable" />.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The first time an <xref:System.Activities.Presentation.Metadata.AttributeTable> is queried for attributes for a type, if the <xref:System.Activities.Presentation.Metadata.AttributeTableBuilder> was populated using <xref:System.Activities.Presentation.Metadata.AttributeTableBuilder.AddCallback%2A> for that type, the delegate is passed a <xref:System.Activities.Presentation.Metadata.AttributeCallbackBuilder>. The <xref:System.Activities.Presentation.Metadata.AttributeTable> removes the callback reference and adds any attribute information provided by calls to <xref:System.Activities.Presentation.Metadata.AttributeCallbackBuilder.AddCustomAttributes%2A>.
]]></format>
</remarks>
</Docs>
<Members>
<MemberGroup MemberName="AddCustomAttributes">
<AssemblyInfo>
<AssemblyName>System.Activities.Presentation</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Docs>
<summary>Adds the contents of the provided attributes to the attribute table that created this builder.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
If an attribute conflicts with another attribute already included in the table, the last attribute added replaces previous attributes.
Attributes can be added only to the type specified by <xref:System.Activities.Presentation.Metadata.AttributeCallbackBuilder.CallbackType%2A>.
]]></format>
</remarks>
</Docs>
</MemberGroup>
<Member MemberName="AddCustomAttributes">
<MemberSignature Language="C#" Value="public void AddCustomAttributes (Attribute[] attributes);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void AddCustomAttributes(class System.Attribute[] attributes) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.Presentation.Metadata.AttributeCallbackBuilder.AddCustomAttributes(System.Attribute[])" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities.Presentation</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="attributes" Type="System.Attribute[]">
<Attributes>
<Attribute>
<AttributeName>System.ParamArray</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="attributes">The attributes that are added to the table.</param>
<summary>Adds the contents of the provided attributes to the attribute table that created this builder.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
If an attribute conflicts with another attribute already included in the table, the last attribute added replaces previous attributes.
Attributes can be added only to the type specified by <xref:System.Activities.Presentation.Metadata.AttributeCallbackBuilder.CallbackType%2A>.
]]></format>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="attributes" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="AddCustomAttributes">
<MemberSignature Language="C#" Value="public void AddCustomAttributes (System.ComponentModel.MemberDescriptor descriptor, Attribute[] attributes);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void AddCustomAttributes(class System.ComponentModel.MemberDescriptor descriptor, class System.Attribute[] attributes) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.Presentation.Metadata.AttributeCallbackBuilder.AddCustomAttributes(System.ComponentModel.MemberDescriptor,System.Attribute[])" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities.Presentation</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="descriptor" Type="System.ComponentModel.MemberDescriptor" />
<Parameter Name="attributes" Type="System.Attribute[]">
<Attributes>
<Attribute>
<AttributeName>System.ParamArray</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="descriptor">The member to which the attributes are added.</param>
<param name="attributes">The attributes that are added to the table.</param>
<summary>Adds the contents of the provided attributes to the attribute table that created this builder.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
If an attribute conflicts with another attribute already included in the table, the last attribute added replaces previous attributes.
Attributes can be added only to the type specified by <xref:System.Activities.Presentation.Metadata.AttributeCallbackBuilder.CallbackType%2A>.
]]></format>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="descriptor" /> or <paramref name="attributes" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="AddCustomAttributes">
<MemberSignature Language="C#" Value="public void AddCustomAttributes (System.Reflection.MemberInfo member, Attribute[] attributes);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void AddCustomAttributes(class System.Reflection.MemberInfo member, class System.Attribute[] attributes) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.Presentation.Metadata.AttributeCallbackBuilder.AddCustomAttributes(System.Reflection.MemberInfo,System.Attribute[])" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities.Presentation</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="member" Type="System.Reflection.MemberInfo" />
<Parameter Name="attributes" Type="System.Attribute[]">
<Attributes>
<Attribute>
<AttributeName>System.ParamArray</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="member">The member to which the attributes are added.</param>
<param name="attributes">The attributes that are added to the table.</param>
<summary>Adds the contents of the provided attributes to the attribute table that created this builder.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
If an attribute conflicts with another attribute already included in the table, the last attribute added replaces previous attributes.
Attributes can be added only to the type specified by <xref:System.Activities.Presentation.Metadata.AttributeCallbackBuilder.CallbackType%2A>.
]]></format>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="member" /> or <paramref name="attributes" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="AddCustomAttributes">
<MemberSignature Language="C#" Value="public void AddCustomAttributes (string memberName, Attribute[] attributes);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void AddCustomAttributes(string memberName, class System.Attribute[] attributes) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.Presentation.Metadata.AttributeCallbackBuilder.AddCustomAttributes(System.String,System.Attribute[])" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities.Presentation</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="memberName" Type="System.String" />
<Parameter Name="attributes" Type="System.Attribute[]">
<Attributes>
<Attribute>
<AttributeName>System.ParamArray</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="memberName">The name of the member to which the attributes are added.</param>
<param name="attributes">The attributes that are added to the table.</param>
<summary>Adds the contents of the provided attributes to the attribute table that created this builder.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
If an attribute conflicts with another attribute already included in the table, the last attribute added replaces previous attributes.
Attributes can be added only to the type specified by <xref:System.Activities.Presentation.Metadata.AttributeCallbackBuilder.CallbackType%2A>.
]]></format>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="memberName" /> or <paramref name="attributes" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="AddCustomAttributes">
<MemberSignature Language="C#" Value="public void AddCustomAttributes (System.Windows.DependencyProperty dp, Attribute[] attributes);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void AddCustomAttributes(class System.Windows.DependencyProperty dp, class System.Attribute[] attributes) cil managed" />
<MemberSignature Language="DocId" Value="M:System.Activities.Presentation.Metadata.AttributeCallbackBuilder.AddCustomAttributes(System.Windows.DependencyProperty,System.Attribute[])" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities.Presentation</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="dp" Type="System.Windows.DependencyProperty" />
<Parameter Name="attributes" Type="System.Attribute[]">
<Attributes>
<Attribute>
<AttributeName>System.ParamArray</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="dp">The dependency to which the attributes are added.</param>
<param name="attributes">The attributes that are added to the table.</param>
<summary>Adds the contents of the provided attributes to the attribute table that created this builder.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
If an attribute conflicts with another attribute already included in the table, the last attribute added replaces previous attributes.
Attributes can be added only to the type specified by <xref:System.Activities.Presentation.Metadata.AttributeCallbackBuilder.CallbackType%2A>.
]]></format>
</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="dp" /> or <paramref name="attributes" /> is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName="CallbackType">
<MemberSignature Language="C#" Value="public Type CallbackType { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Type CallbackType" />
<MemberSignature Language="DocId" Value="P:System.Activities.Presentation.Metadata.AttributeCallbackBuilder.CallbackType" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.Activities.Presentation</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Type</ReturnType>
</ReturnValue>
<Docs>
<summary>The type to which attributes will be added.</summary>
<value>The type to which attributes will be added.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The type is set in the constructor and cannot be changed.
]]></format>
</remarks>
</Docs>
</Member>
</Members>
</Type>