1<?xml version="1.0" encoding="utf-8"?>
2<Type Name="WizardStepCollection" FullName="System.Web.UI.WebControls.WizardStepCollection">
3  <TypeSignature Language="C#" Value="public sealed class WizardStepCollection : System.Collections.IList" />
4  <AssemblyInfo>
5    <AssemblyName>System.Web</AssemblyName>
6    <AssemblyVersion>2.0.0.0</AssemblyVersion>
7  </AssemblyInfo>
8  <Base>
9    <BaseTypeName>System.Object</BaseTypeName>
10  </Base>
11  <Interfaces>
12    <Interface>
13      <InterfaceName>System.Collections.IList</InterfaceName>
14    </Interface>
15  </Interfaces>
16  <Docs>
17    <since version=".NET 2.0" />
18    <remarks>
19      <attribution license="cc4" from="Microsoft" modified="false" />
20      <para>The <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> class is used to store and manage a collection of <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived objects in a control that acts as a wizard, such as the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control or the <see cref="T:System.Web.UI.WebControls.Wizard" /> control. For example, the <see cref="T:System.Web.UI.WebControls.Wizard" /> control uses the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> class for its <see cref="P:System.Web.UI.WebControls.Wizard.WizardSteps" /> property.</para>
21      <para>There are multiple ways you can access the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived objects in the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" />:</para>
22      <list type="bullet">
23        <item>
24          <para>Use the <see cref="P:System.Web.UI.WebControls.WizardStepCollection.Item(System.Int32)" /> property to directly access a <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object at a specific zero-based index.</para>
25        </item>
26        <item>
27          <para>Use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.GetEnumerator" /> method to create an enumerator that can be used to iterate through the collection.</para>
28        </item>
29        <item>
30          <para>Use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.CopyTo(System.Web.UI.WebControls.WizardStepBase[],System.Int32)" /> method to copy the contents of the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection into an <see cref="T:System.Array" /> object.</para>
31        </item>
32      </list>
33    </remarks>
34    <summary>
35      <attribution license="cc4" from="Microsoft" modified="false" />
36      <para>Represents a collection of <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived objects in a control that acts as a wizard. This class cannot be inherited.</para>
37    </summary>
38  </Docs>
39  <Members>
40    <Member MemberName="Add">
41      <MemberSignature Language="C#" Value="public void Add (System.Web.UI.WebControls.WizardStepBase wizardStep);" />
42      <MemberType>Method</MemberType>
43      <ReturnValue>
44        <ReturnType>System.Void</ReturnType>
45      </ReturnValue>
46      <Parameters>
47        <Parameter Name="wizardStep" Type="System.Web.UI.WebControls.WizardStepBase" />
48      </Parameters>
49      <Docs>
50        <since version=".NET 2.0" />
51        <remarks>
52          <attribution license="cc4" from="Microsoft" modified="false" />
53          <para>The <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Add(System.Web.UI.WebControls.WizardStepBase)" /> method adds the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to the end of the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection. To add a <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to the collection at a specific index location, use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.AddAt(System.Int32,System.Web.UI.WebControls.WizardStepBase)" /> method.</para>
54        </remarks>
55        <summary>
56          <attribution license="cc4" from="Microsoft" modified="false" />
57          <para>Appends the specified <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to the end of the collection.</para>
58        </summary>
59        <param name="wizardStep">
60          <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to append to the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection.</param>
61      </Docs>
62      <AssemblyInfo>
63        <AssemblyVersion>2.0.0.0</AssemblyVersion>
64      </AssemblyInfo>
65    </Member>
66    <Member MemberName="AddAt">
67      <MemberSignature Language="C#" Value="public void AddAt (int index, System.Web.UI.WebControls.WizardStepBase wizardStep);" />
68      <MemberType>Method</MemberType>
69      <ReturnValue>
70        <ReturnType>System.Void</ReturnType>
71      </ReturnValue>
72      <Parameters>
73        <Parameter Name="index" Type="System.Int32" />
74        <Parameter Name="wizardStep" Type="System.Web.UI.WebControls.WizardStepBase" />
75      </Parameters>
76      <Docs>
77        <since version=".NET 2.0" />
78        <remarks>
79          <attribution license="cc4" from="Microsoft" modified="false" />
80          <para>The <see cref="M:System.Web.UI.WebControls.WizardStepCollection.AddAt(System.Int32,System.Web.UI.WebControls.WizardStepBase)" /> method adds the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to the collection at the specified index location.</para>
81          <para>To add a <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to the end of the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection, use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Add(System.Web.UI.WebControls.WizardStepBase)" /> method.</para>
82        </remarks>
83        <summary>
84          <attribution license="cc4" from="Microsoft" modified="false" />
85          <para>Adds the specified <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to the collection at the specified index location.</para>
86        </summary>
87        <param name="index">
88          <attribution license="cc4" from="Microsoft" modified="false" />The index location at which to insert <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object.</param>
89        <param name="wizardStep">
90          <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to append to the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection.</param>
91      </Docs>
92      <AssemblyInfo>
93        <AssemblyVersion>2.0.0.0</AssemblyVersion>
94      </AssemblyInfo>
95    </Member>
96    <Member MemberName="Clear">
97      <MemberSignature Language="C#" Value="public void Clear ();" />
98      <MemberType>Method</MemberType>
99      <ReturnValue>
100        <ReturnType>System.Void</ReturnType>
101      </ReturnValue>
102      <Parameters />
103      <Docs>
104        <since version=".NET 2.0" />
105        <remarks>
106          <attribution license="cc4" from="Microsoft" modified="false" />
107          <para>Use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Clear" /> method to remove all the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived objects from the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection. </para>
108          <block subset="none" type="note">
109            <para>After the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Clear" /> method removes the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived objects from the collection, the <see cref="P:System.Web.UI.WebControls.WizardStepCollection.Count" /> property of the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection has a value of zero.</para>
110          </block>
111        </remarks>
112        <summary>
113          <attribution license="cc4" from="Microsoft" modified="false" />
114          <para>Removes all <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived objects from the collection.</para>
115        </summary>
116      </Docs>
117      <AssemblyInfo>
118        <AssemblyVersion>2.0.0.0</AssemblyVersion>
119      </AssemblyInfo>
120    </Member>
121    <Member MemberName="Contains">
122      <MemberSignature Language="C#" Value="public bool Contains (System.Web.UI.WebControls.WizardStepBase wizardStep);" />
123      <MemberType>Method</MemberType>
124      <ReturnValue>
125        <ReturnType>System.Boolean</ReturnType>
126      </ReturnValue>
127      <Parameters>
128        <Parameter Name="wizardStep" Type="System.Web.UI.WebControls.WizardStepBase" />
129      </Parameters>
130      <Docs>
131        <since version=".NET 2.0" />
132        <remarks>
133          <attribution license="cc4" from="Microsoft" modified="false" />
134          <para>Use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Contains(System.Web.UI.WebControls.WizardStepBase)" /> method to determine whether a <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object is contained in the collection. This method is commonly used to test for the existence of a <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object before performing a task, such as removing a <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object from the collection.</para>
135        </remarks>
136        <summary>
137          <attribution license="cc4" from="Microsoft" modified="false" />
138          <para>Determines whether the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection contains a specific <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object.</para>
139        </summary>
140        <returns>
141          <attribution license="cc4" from="Microsoft" modified="false" />
142          <para>true if the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object is found in the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection; otherwise, false.</para>
143        </returns>
144        <param name="wizardStep">
145          <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to find in the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection.</param>
146      </Docs>
147      <AssemblyInfo>
148        <AssemblyVersion>2.0.0.0</AssemblyVersion>
149      </AssemblyInfo>
150    </Member>
151    <Member MemberName="CopyTo">
152      <MemberSignature Language="C#" Value="public void CopyTo (System.Web.UI.WebControls.WizardStepBase[] array, int index);" />
153      <MemberType>Method</MemberType>
154      <ReturnValue>
155        <ReturnType>System.Void</ReturnType>
156      </ReturnValue>
157      <Parameters>
158        <Parameter Name="array" Type="System.Web.UI.WebControls.WizardStepBase[]" />
159        <Parameter Name="index" Type="System.Int32" />
160      </Parameters>
161      <Docs>
162        <since version=".NET 2.0" />
163        <remarks>
164          <attribution license="cc4" from="Microsoft" modified="false" />
165          <para>Use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.CopyTo(System.Web.UI.WebControls.WizardStepBase[],System.Int32)" /> method to copy the contents of the collection into the specified zero-based array. Items are copied starting at the specified index of the target array. After the items are in an array, you can use array syntax to access the items in the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection.</para>
166          <para>As an alternative, you can also use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.GetEnumerator" /> method to create an enumerator that can be used to access the items in the collection.</para>
167        </remarks>
168        <summary>
169          <attribution license="cc4" from="Microsoft" modified="false" />
170          <para>Copies all the items from a <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection to a compatible one-dimensional array of <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> objects, starting at the specified index in the target array.</para>
171        </summary>
172        <param name="array">
173          <attribution license="cc4" from="Microsoft" modified="false" />A zero-based array of <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> objects that receives the items copied from the collection.</param>
174        <param name="index">
175          <attribution license="cc4" from="Microsoft" modified="false" />The position in the target array at which the array starts receiving the copied items.</param>
176      </Docs>
177      <AssemblyInfo>
178        <AssemblyVersion>2.0.0.0</AssemblyVersion>
179      </AssemblyInfo>
180    </Member>
181    <Member MemberName="Count">
182      <MemberSignature Language="C#" Value="public int Count { get; }" />
183      <MemberType>Property</MemberType>
184      <ReturnValue>
185        <ReturnType>System.Int32</ReturnType>
186      </ReturnValue>
187      <Docs>
188        <value>To be added.</value>
189        <since version=".NET 2.0" />
190        <remarks>
191          <attribution license="cc4" from="Microsoft" modified="false" />
192          <para>Use the <see cref="P:System.Web.UI.WebControls.WizardStepCollection.Count" /> property to determine the number of <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived objects in the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection. The <see cref="P:System.Web.UI.WebControls.WizardStepCollection.Count" /> property is commonly used when iterating through the collection to determine its upper bound.</para>
193        </remarks>
194        <summary>
195          <attribution license="cc4" from="Microsoft" modified="false" />
196          <para>Gets the number of <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived objects in the <see cref="T:System.Web.UI.WebControls.Wizard" /> control's <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection.</para>
197        </summary>
198      </Docs>
199      <AssemblyInfo>
200        <AssemblyVersion>2.0.0.0</AssemblyVersion>
201      </AssemblyInfo>
202    </Member>
203    <Member MemberName="GetEnumerator">
204      <MemberSignature Language="C#" Value="public System.Collections.IEnumerator GetEnumerator ();" />
205      <MemberType>Method</MemberType>
206      <ReturnValue>
207        <ReturnType>System.Collections.IEnumerator</ReturnType>
208      </ReturnValue>
209      <Parameters />
210      <Docs>
211        <remarks>To be added.</remarks>
212        <since version=".NET 2.0" />
213        <summary>
214          <attribution license="cc4" from="Microsoft" modified="false" />
215          <para>Returns an <see cref="T:System.Collections.IEnumerator" />-implemented object that can be used to iterate through the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived objects in the collection.</para>
216        </summary>
217        <returns>
218          <attribution license="cc4" from="Microsoft" modified="false" />
219          <para>An <see cref="T:System.Collections.IEnumerator" />-implemented object that contains all the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived objects in the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection.</para>
220        </returns>
221      </Docs>
222      <AssemblyInfo>
223        <AssemblyVersion>2.0.0.0</AssemblyVersion>
224      </AssemblyInfo>
225    </Member>
226    <Member MemberName="IndexOf">
227      <MemberSignature Language="C#" Value="public int IndexOf (System.Web.UI.WebControls.WizardStepBase wizardStep);" />
228      <MemberType>Method</MemberType>
229      <ReturnValue>
230        <ReturnType>System.Int32</ReturnType>
231      </ReturnValue>
232      <Parameters>
233        <Parameter Name="wizardStep" Type="System.Web.UI.WebControls.WizardStepBase" />
234      </Parameters>
235      <Docs>
236        <since version=".NET 2.0" />
237        <remarks>
238          <attribution license="cc4" from="Microsoft" modified="false" />
239          <para>Use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.IndexOf(System.Web.UI.WebControls.WizardStepBase)" /> method to determine the index of the specified <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object in the current <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection. If the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object is not in the collection, the method returns -1.</para>
240        </remarks>
241        <summary>
242          <attribution license="cc4" from="Microsoft" modified="false" />
243          <para>Determines the index value that represents the position of the specified <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object in the collection.</para>
244        </summary>
245        <returns>
246          <attribution license="cc4" from="Microsoft" modified="false" />
247          <para>If found, the zero-based index of the first occurrence of the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object passed in within the current <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection; otherwise, -1.</para>
248        </returns>
249        <param name="wizardStep">
250          <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to search for in the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection.</param>
251      </Docs>
252      <AssemblyInfo>
253        <AssemblyVersion>2.0.0.0</AssemblyVersion>
254      </AssemblyInfo>
255    </Member>
256    <Member MemberName="Insert">
257      <MemberSignature Language="C#" Value="public void Insert (int index, System.Web.UI.WebControls.WizardStepBase wizardStep);" />
258      <MemberType>Method</MemberType>
259      <ReturnValue>
260        <ReturnType>System.Void</ReturnType>
261      </ReturnValue>
262      <Parameters>
263        <Parameter Name="index" Type="System.Int32" />
264        <Parameter Name="wizardStep" Type="System.Web.UI.WebControls.WizardStepBase" />
265      </Parameters>
266      <Docs>
267        <since version=".NET 2.0" />
268        <remarks>
269          <attribution license="cc4" from="Microsoft" modified="false" />
270          <para>The <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Insert(System.Int32,System.Web.UI.WebControls.WizardStepBase)" /> method adds the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to the collection at the specified index location.</para>
271          <para>Alternatively, you can use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.AddAt(System.Int32,System.Web.UI.WebControls.WizardStepBase)" /> method to add the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to the collection. To add a <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to the end of the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection, use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Add(System.Web.UI.WebControls.WizardStepBase)" /> method.</para>
272          <block subset="none" type="note">
273            <para>The <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Insert(System.Int32,System.Web.UI.WebControls.WizardStepBase)" /> method and the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.AddAt(System.Int32,System.Web.UI.WebControls.WizardStepBase)" /> method perform essentially the same function. When the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Insert(System.Int32,System.Web.UI.WebControls.WizardStepBase)" /> method is called, it simply passes the wizardStep and index parameters to the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.AddAt(System.Int32,System.Web.UI.WebControls.WizardStepBase)" /> method.</para>
274          </block>
275        </remarks>
276        <summary>
277          <attribution license="cc4" from="Microsoft" modified="false" />
278          <para>Inserts the specified <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object into the collection at the specified index location.</para>
279        </summary>
280        <param name="index">
281          <attribution license="cc4" from="Microsoft" modified="false" />The index location at which to insert the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object.</param>
282        <param name="wizardStep">
283          <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to insert into the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection.</param>
284      </Docs>
285      <AssemblyInfo>
286        <AssemblyVersion>2.0.0.0</AssemblyVersion>
287      </AssemblyInfo>
288    </Member>
289    <Member MemberName="IsReadOnly">
290      <MemberSignature Language="C#" Value="public bool IsReadOnly { get; }" />
291      <MemberType>Property</MemberType>
292      <ReturnValue>
293        <ReturnType>System.Boolean</ReturnType>
294      </ReturnValue>
295      <Docs>
296        <value>To be added.</value>
297        <remarks>To be added.</remarks>
298        <since version=".NET 2.0" />
299        <summary>
300          <attribution license="cc4" from="Microsoft" modified="false" />
301          <para>Gets a value indicating whether the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived objects in the collection can be modified.</para>
302        </summary>
303      </Docs>
304      <AssemblyInfo>
305        <AssemblyVersion>2.0.0.0</AssemblyVersion>
306      </AssemblyInfo>
307    </Member>
308    <Member MemberName="IsSynchronized">
309      <MemberSignature Language="C#" Value="public bool IsSynchronized { get; }" />
310      <MemberType>Property</MemberType>
311      <ReturnValue>
312        <ReturnType>System.Boolean</ReturnType>
313      </ReturnValue>
314      <Docs>
315        <value>To be added.</value>
316        <since version=".NET 2.0" />
317        <remarks>
318          <attribution license="cc4" from="Microsoft" modified="false" />
319          <para>This property is derived from the <see cref="T:System.Collections.ICollection" /> interface and is overridden to always return false.</para>
320          <para>For more information on the <see cref="P:System.Web.UI.WebControls.WizardStepCollection.IsSynchronized" /> property, see the <see cref="P:System.Collections.ICollection.IsSynchronized" /> property of the <see cref="T:System.Collections.ICollection" /> interface</para>
321        </remarks>
322        <summary>
323          <attribution license="cc4" from="Microsoft" modified="false" />
324          <para>Gets a value indicating whether access to the collection is synchronized (thread-safe).</para>
325        </summary>
326      </Docs>
327      <AssemblyInfo>
328        <AssemblyVersion>2.0.0.0</AssemblyVersion>
329      </AssemblyInfo>
330    </Member>
331    <Member MemberName="Item">
332      <MemberSignature Language="C#" Value="public System.Web.UI.WebControls.WizardStepBase this[int index] { get; }" />
333      <MemberType>Property</MemberType>
334      <ReturnValue>
335        <ReturnType>System.Web.UI.WebControls.WizardStepBase</ReturnType>
336      </ReturnValue>
337      <Parameters>
338        <Parameter Name="index" Type="System.Int32" />
339      </Parameters>
340      <Docs>
341        <param name="index">To be added.</param>
342        <summary>To be added.</summary>
343        <value>To be added.</value>
344        <remarks>To be added.</remarks>
345        <since version=".NET 2.0" />
346      </Docs>
347      <AssemblyInfo>
348        <AssemblyVersion>2.0.0.0</AssemblyVersion>
349      </AssemblyInfo>
350    </Member>
351    <Member MemberName="Remove">
352      <MemberSignature Language="C#" Value="public void Remove (System.Web.UI.WebControls.WizardStepBase wizardStep);" />
353      <MemberType>Method</MemberType>
354      <ReturnValue>
355        <ReturnType>System.Void</ReturnType>
356      </ReturnValue>
357      <Parameters>
358        <Parameter Name="wizardStep" Type="System.Web.UI.WebControls.WizardStepBase" />
359      </Parameters>
360      <Docs>
361        <since version=".NET 2.0" />
362        <remarks>
363          <attribution license="cc4" from="Microsoft" modified="false" />
364          <para>Use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Remove(System.Web.UI.WebControls.WizardStepBase)" /> method to remove the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object from the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection. Alternatively, you can use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.RemoveAt(System.Int32)" /> method to remove a <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object from a specified location in the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection.</para>
365        </remarks>
366        <summary>
367          <attribution license="cc4" from="Microsoft" modified="false" />
368          <para>Removes the specified <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object from the collection.</para>
369        </summary>
370        <param name="wizardStep">
371          <attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to remove from the collection.</param>
372      </Docs>
373      <AssemblyInfo>
374        <AssemblyVersion>2.0.0.0</AssemblyVersion>
375      </AssemblyInfo>
376    </Member>
377    <Member MemberName="RemoveAt">
378      <MemberSignature Language="C#" Value="public void RemoveAt (int index);" />
379      <MemberType>Method</MemberType>
380      <ReturnValue>
381        <ReturnType>System.Void</ReturnType>
382      </ReturnValue>
383      <Parameters>
384        <Parameter Name="index" Type="System.Int32" />
385      </Parameters>
386      <Docs>
387        <since version=".NET 2.0" />
388        <remarks>
389          <attribution license="cc4" from="Microsoft" modified="false" />
390          <para>Use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.RemoveAt(System.Int32)" /> method to remove the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object from the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection at the specified index location. Alternatively, you can remove a specific <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object from the collection using the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Remove(System.Web.UI.WebControls.WizardStepBase)" /> method. </para>
391        </remarks>
392        <summary>
393          <attribution license="cc4" from="Microsoft" modified="false" />
394          <para>Removes the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object from the collection at the specified location.</para>
395        </summary>
396        <param name="index">
397          <attribution license="cc4" from="Microsoft" modified="false" />The index of the <see cref="T:System.Web.UI.WebControls.WizardStepBase" />-derived object to remove.</param>
398      </Docs>
399      <AssemblyInfo>
400        <AssemblyVersion>2.0.0.0</AssemblyVersion>
401      </AssemblyInfo>
402    </Member>
403    <Member MemberName="SyncRoot">
404      <MemberSignature Language="C#" Value="public object SyncRoot { get; }" />
405      <MemberType>Property</MemberType>
406      <ReturnValue>
407        <ReturnType>System.Object</ReturnType>
408      </ReturnValue>
409      <Docs>
410        <value>To be added.</value>
411        <since version=".NET 2.0" />
412        <remarks>
413          <attribution license="cc4" from="Microsoft" modified="false" />
414          <para>The object returned in this implementation is the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> object itself.</para>
415          <para>For more information on the <see cref="P:System.Web.UI.WebControls.WizardStepCollection.SyncRoot" /> property, see the <see cref="P:System.Collections.ICollection.SyncRoot" /> property of the <see cref="T:System.Collections.ICollection" /> interface.</para>
416        </remarks>
417        <summary>
418          <attribution license="cc4" from="Microsoft" modified="false" />
419          <para>Gets an object that can be used to synchronize access to the collection.</para>
420        </summary>
421      </Docs>
422      <AssemblyInfo>
423        <AssemblyVersion>2.0.0.0</AssemblyVersion>
424      </AssemblyInfo>
425    </Member>
426    <Member MemberName="System.Collections.ICollection.CopyTo">
427      <MemberSignature Language="C#" Value="void ICollection.CopyTo (Array array, int index);" />
428      <MemberType>Method</MemberType>
429      <AssemblyInfo>
430        <AssemblyVersion>2.0.0.0</AssemblyVersion>
431      </AssemblyInfo>
432      <ReturnValue>
433        <ReturnType>System.Void</ReturnType>
434      </ReturnValue>
435      <Parameters>
436        <Parameter Name="array" Type="System.Array" />
437        <Parameter Name="index" Type="System.Int32" />
438      </Parameters>
439      <Docs>
440        <remarks>To be added.</remarks>
441        <summary>
442          <attribution license="cc4" from="Microsoft" modified="false" />
443          <para>Copies all the items from a <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection to a one-dimensional array, starting at the specified index in the target array.</para>
444        </summary>
445        <param name="array">
446          <attribution license="cc4" from="Microsoft" modified="false" />A zero-based <see cref="T:System.Array" /> that receives the items copied from the <see cref="T:System.Web.UI.WebControls.WizardStepCollection" /> collection.</param>
447        <param name="index">
448          <attribution license="cc4" from="Microsoft" modified="false" />The position in the target array at which to start receiving the copied content.</param>
449      </Docs>
450    </Member>
451    <Member MemberName="System.Collections.IList.Add">
452      <MemberSignature Language="C#" Value="int IList.Add (object ob);" />
453      <MemberType>Method</MemberType>
454      <AssemblyInfo>
455        <AssemblyVersion>2.0.0.0</AssemblyVersion>
456      </AssemblyInfo>
457      <ReturnValue>
458        <ReturnType>System.Int32</ReturnType>
459      </ReturnValue>
460      <Parameters>
461        <Parameter Name="ob" Type="System.Object" />
462      </Parameters>
463      <Docs>
464        <param name="ob">To be added.</param>
465        <remarks>To be added.</remarks>
466        <summary>
467          <attribution license="cc4" from="Microsoft" modified="false" />
468          <para>Appends the specified object to the end of the collection.</para>
469        </summary>
470        <returns>
471          <attribution license="cc4" from="Microsoft" modified="false" />
472          <para>The position into which the new element was inserted.</para>
473        </returns>
474      </Docs>
475    </Member>
476    <Member MemberName="System.Collections.IList.Contains">
477      <MemberSignature Language="C#" Value="bool IList.Contains (object ob);" />
478      <MemberType>Method</MemberType>
479      <AssemblyInfo>
480        <AssemblyVersion>2.0.0.0</AssemblyVersion>
481      </AssemblyInfo>
482      <ReturnValue>
483        <ReturnType>System.Boolean</ReturnType>
484      </ReturnValue>
485      <Parameters>
486        <Parameter Name="ob" Type="System.Object" />
487      </Parameters>
488      <Docs>
489        <param name="ob">To be added.</param>
490        <remarks>To be added.</remarks>
491        <summary>
492          <attribution license="cc4" from="Microsoft" modified="false" />
493          <para>Determines whether the collection contains the specified object.</para>
494        </summary>
495        <returns>
496          <attribution license="cc4" from="Microsoft" modified="false" />
497          <para>true if the <see cref="T:System.Object" /> is found in the <see cref="T:System.Collections.IList" />; otherwise false.</para>
498        </returns>
499      </Docs>
500    </Member>
501    <Member MemberName="System.Collections.IList.IndexOf">
502      <MemberSignature Language="C#" Value="int IList.IndexOf (object ob);" />
503      <MemberType>Method</MemberType>
504      <AssemblyInfo>
505        <AssemblyVersion>2.0.0.0</AssemblyVersion>
506      </AssemblyInfo>
507      <ReturnValue>
508        <ReturnType>System.Int32</ReturnType>
509      </ReturnValue>
510      <Parameters>
511        <Parameter Name="ob" Type="System.Object" />
512      </Parameters>
513      <Docs>
514        <param name="ob">To be added.</param>
515        <remarks>To be added.</remarks>
516        <summary>
517          <attribution license="cc4" from="Microsoft" modified="false" />
518          <para>Determines the index value that represents the position of the specified object in the collection.</para>
519        </summary>
520        <returns>
521          <attribution license="cc4" from="Microsoft" modified="false" />
522          <para>The index value of the specified object in the collection.</para>
523        </returns>
524      </Docs>
525    </Member>
526    <Member MemberName="System.Collections.IList.Insert">
527      <MemberSignature Language="C#" Value="void IList.Insert (int index, object ob);" />
528      <MemberType>Method</MemberType>
529      <AssemblyInfo>
530        <AssemblyVersion>2.0.0.0</AssemblyVersion>
531      </AssemblyInfo>
532      <ReturnValue>
533        <ReturnType>System.Void</ReturnType>
534      </ReturnValue>
535      <Parameters>
536        <Parameter Name="index" Type="System.Int32" />
537        <Parameter Name="ob" Type="System.Object" />
538      </Parameters>
539      <Docs>
540        <param name="ob">To be added.</param>
541        <remarks>To be added.</remarks>
542        <summary>
543          <attribution license="cc4" from="Microsoft" modified="false" />
544          <para>Inserts the specified object in the collection at the specified position.</para>
545        </summary>
546        <param name="index">
547          <attribution license="cc4" from="Microsoft" modified="false" />The index at which to insert the object into the collection.</param>
548      </Docs>
549    </Member>
550    <Member MemberName="System.Collections.IList.IsFixedSize">
551      <MemberSignature Language="C#" Value="bool System.Collections.IList.IsFixedSize { get; }" />
552      <MemberType>Property</MemberType>
553      <AssemblyInfo>
554        <AssemblyVersion>2.0.0.0</AssemblyVersion>
555      </AssemblyInfo>
556      <ReturnValue>
557        <ReturnType>System.Boolean</ReturnType>
558      </ReturnValue>
559      <Docs>
560        <value>To be added.</value>
561        <remarks>To be added.</remarks>
562        <summary>
563          <attribution license="cc4" from="Microsoft" modified="false" />
564          <para>Gets a value indicating whether the collection has a fixed size.</para>
565        </summary>
566      </Docs>
567    </Member>
568    <Member MemberName="System.Collections.IList.Item">
569      <MemberSignature Language="C#" Value="object System.Collections.IList.Item[int index] { set; get; }" />
570      <MemberType>Property</MemberType>
571      <AssemblyInfo>
572        <AssemblyVersion>2.0.0.0</AssemblyVersion>
573      </AssemblyInfo>
574      <ReturnValue>
575        <ReturnType>System.Object</ReturnType>
576      </ReturnValue>
577      <Parameters>
578        <Parameter Name="index" Type="System.Int32" />
579      </Parameters>
580      <Docs>
581        <param name="index">To be added.</param>
582        <summary>To be added.</summary>
583        <value>To be added.</value>
584        <remarks>To be added.</remarks>
585      </Docs>
586    </Member>
587    <Member MemberName="System.Collections.IList.Remove">
588      <MemberSignature Language="C#" Value="void IList.Remove (object ob);" />
589      <MemberType>Method</MemberType>
590      <AssemblyInfo>
591        <AssemblyVersion>2.0.0.0</AssemblyVersion>
592      </AssemblyInfo>
593      <ReturnValue>
594        <ReturnType>System.Void</ReturnType>
595      </ReturnValue>
596      <Parameters>
597        <Parameter Name="ob" Type="System.Object" />
598      </Parameters>
599      <Docs>
600        <param name="ob">To be added.</param>
601        <remarks>To be added.</remarks>
602        <summary>
603          <attribution license="cc4" from="Microsoft" modified="false" />
604          <para>Removes the specified object from the collection.</para>
605        </summary>
606      </Docs>
607    </Member>
608  </Members>
609</Type>