BusinessLogicParameterCollection Class

This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.

Represents a collection of business logic parameter.

Inheritance Hierarchy

System.Object
  System.Collections.ArrayList
    Microsoft.SqlServer.Replication.BusinessLogicSupport.BusinessLogicParameterCollection

Namespace:  Microsoft.SqlServer.Replication.BusinessLogicSupport
Assembly:  Microsoft.SqlServer.Replication.BusinessLogicSupport (in Microsoft.SqlServer.Replication.BusinessLogicSupport.dll)

Syntax

'Declaration
Public Class BusinessLogicParameterCollection _
    Inherits ArrayList _
    Implements IDataParameterCollection, IList, ICollection, IEnumerable
'Usage
Dim instance As BusinessLogicParameterCollection
public class BusinessLogicParameterCollection : ArrayList, 
    IDataParameterCollection, IList, ICollection, IEnumerable
public ref class BusinessLogicParameterCollection : public ArrayList, 
    IDataParameterCollection, IList, ICollection, IEnumerable
type BusinessLogicParameterCollection =  
    class 
        inherit ArrayList 
        interface IDataParameterCollection 
        interface IList 
        interface ICollection 
        interface IEnumerable 
    end
public class BusinessLogicParameterCollection extends ArrayList implements IDataParameterCollection, IList, ICollection, IEnumerable

The BusinessLogicParameterCollection type exposes the following members.

Constructors

  Name Description
Public method BusinessLogicParameterCollection Initializes a new instance of the BusinessLogicParameterCollection class.

Top

Properties

  Name Description
Public property Capacity (Inherited from ArrayList.)
Public property Count (Inherited from ArrayList.)
Public property IsFixedSize (Inherited from ArrayList.)
Public property IsReadOnly (Inherited from ArrayList.)
Public property IsSynchronized (Inherited from ArrayList.)
Public property Item[Int32] (Inherited from ArrayList.)
Public property Item[String] Gets or sets the parameter collection at the specified index.
Public property SyncRoot (Inherited from ArrayList.)

Top

Methods

  Name Description
Public method Add(Object) Adds the specified parameter to the collection. (Overrides ArrayList.Add(Object).)
Public method Add(BusinessLogicParameter) Adds the specified parameter to the collection.
Public method Add(String, DbType) Adds the specified parameter to the collection.
Public method Add(String, Object) Adds the specified parameter to the collection.
Public method Add(String, DbType, String) Adds the specified parameter to the collection.
Public method AddRange (Inherited from ArrayList.)
Public method BinarySearch(Object) (Inherited from ArrayList.)
Public method BinarySearch(Object, IComparer) (Inherited from ArrayList.)
Public method BinarySearch(Int32, Int32, Object, IComparer) (Inherited from ArrayList.)
Public method Clear (Inherited from ArrayList.)
Public method Clone (Inherited from ArrayList.)
Public method Contains(Object) (Inherited from ArrayList.)
Public method Contains(String) Indicates whether the parameter with the specified name exists in the collection.
Public method CopyTo(Array) (Inherited from ArrayList.)
Public method CopyTo(Array, Int32) (Inherited from ArrayList.)
Public method CopyTo(BusinessLogicParameterCollection, Int32) Copies a BusinessLogicParameterCollection starting at the specified index.
Public method CopyTo(Int32, Array, Int32, Int32) (Inherited from ArrayList.)
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetEnumerator() (Inherited from ArrayList.)
Public method GetEnumerator(Int32, Int32) (Inherited from ArrayList.)
Public method GetHashCode (Inherited from Object.)
Public method GetRange (Inherited from ArrayList.)
Public method GetType (Inherited from Object.)
Public method IndexOf(Object) (Inherited from ArrayList.)
Public method IndexOf(String) Returns the index of the parameter object with the specified name.
Public method IndexOf(Object, Int32) (Inherited from ArrayList.)
Public method IndexOf(Object, Int32, Int32) (Inherited from ArrayList.)
Public method Insert(Int32, Object) (Inherited from ArrayList.)
Public method Insert(Int32, BusinessLogicParameterCollection) Inserts the specified index of the parameter object with the specified name into the collection at the specified index
Public method InsertRange (Inherited from ArrayList.)
Public method LastIndexOf(Object) (Inherited from ArrayList.)
Public method LastIndexOf(Object, Int32) (Inherited from ArrayList.)
Public method LastIndexOf(Object, Int32, Int32) (Inherited from ArrayList.)
Protected method MemberwiseClone (Inherited from Object.)
Public method Remove(Object) (Inherited from ArrayList.)
Public method Remove(BusinessLogicParameterCollection) Removes the parameter object from the collection.
Public method RemoveAt(Int32) (Inherited from ArrayList.)
Public method RemoveAt(String) Removes the parameter object with the specified name from the collection.
Public method RemoveRange (Inherited from ArrayList.)
Public method Reverse() (Inherited from ArrayList.)
Public method Reverse(Int32, Int32) (Inherited from ArrayList.)
Public method SetRange (Inherited from ArrayList.)
Public method Sort() (Inherited from ArrayList.)
Public method Sort(IComparer) (Inherited from ArrayList.)
Public method Sort(Int32, Int32, IComparer) (Inherited from ArrayList.)
Public method ToArray() (Inherited from ArrayList.)
Public method ToArray(Type) (Inherited from ArrayList.)
Public method ToString (Inherited from Object.)
Public method TrimToSize (Inherited from ArrayList.)

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.SqlServer.Replication.BusinessLogicSupport Namespace