Ejemplo n.º 1
0
 /// <devdoc>
 ///    <para>Adds a <see cref='Microsoft.CodeDom.CodeCatchClause'/> with the specified value to the
 ///    <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> .</para>
 /// </devdoc>
 public int Add(CodeCatchClause value)
 {
     return(List.Add(value));
 }
Ejemplo n.º 2
0
 /// <devdoc>
 ///    <para> Removes a specific <see cref='Microsoft.CodeDom.CodeCatchClause'/> from the
 ///    <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> .</para>
 /// </devdoc>
 public void Remove(CodeCatchClause value)
 {
     List.Remove(value);
 }
Ejemplo n.º 3
0
 /// <devdoc>
 ///    <para>Returns the index of a <see cref='Microsoft.CodeDom.CodeCatchClause'/> in
 ///       the <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> .</para>
 /// </devdoc>
 public int IndexOf(CodeCatchClause value)
 {
     return(List.IndexOf(value));
 }
Ejemplo n.º 4
0
 /// <devdoc>
 /// <para>Inserts a <see cref='Microsoft.CodeDom.CodeCatchClause'/> into the <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> at the specified index.</para>
 /// </devdoc>
 public void Insert(int index, CodeCatchClause value)
 {
     List.Insert(index, value);
 }
Ejemplo n.º 5
0
 /// <devdoc>
 /// <para>Gets a value indicating whether the
 ///    <see cref='Microsoft.CodeDom.CodeCatchClauseCollection'/> contains the specified <see cref='Microsoft.CodeDom.CodeCatchClause'/>.</para>
 /// </devdoc>
 public bool Contains(CodeCatchClause value)
 {
     return(List.Contains(value));
 }