SqlSyncSqlParameterCollection Class
Represents a collection of SqlParameter objects that can be indexed by the name of the parameter.
Inheritance Hierarchy
System.Object
System.Collections.ObjectModel.Collection<SqlParameter>
Microsoft.Synchronization.Data.SqlServer.SqlSyncSqlParameterCollection
Namespace: Microsoft.Synchronization.Data.SqlServer
Assembly: Microsoft.Synchronization.Data.SqlServer (in Microsoft.Synchronization.Data.SqlServer.dll)
Syntax
'Declaration
Public Class SqlSyncSqlParameterCollection _
Inherits Collection(Of SqlParameter)
'Usage
Dim instance As SqlSyncSqlParameterCollection
public class SqlSyncSqlParameterCollection : Collection<SqlParameter>
public ref class SqlSyncSqlParameterCollection : public Collection<SqlParameter^>
type SqlSyncSqlParameterCollection =
class
inherit Collection<SqlParameter>
end
public class SqlSyncSqlParameterCollection extends Collection<SqlParameter>
The SqlSyncSqlParameterCollection type exposes the following members.
Constructors
Name | Description | |
---|---|---|
SqlSyncSqlParameterCollection | Initializes a new instance of the SqlSyncSqlParameterCollection class. |
Top
Properties
Name | Description | |
---|---|---|
Count | (Inherited from Collection<SqlParameter>.) | |
Item[Int32] | (Inherited from Collection<SqlParameter>.) | |
Item[String] | An indexer property that gets the parameter object with the specified name in the collection. | |
Items | (Inherited from Collection<SqlParameter>.) |
Top
Methods
Name | Description | |
---|---|---|
Add | (Inherited from Collection<SqlParameter>.) | |
Clear | (Inherited from Collection<SqlParameter>.) | |
ClearItems | (Inherited from Collection<SqlParameter>.) | |
Contains | (Inherited from Collection<SqlParameter>.) | |
CopyTo | (Inherited from Collection<SqlParameter>.) | |
Equals | (Inherited from Object.) | |
Finalize | (Inherited from Object.) | |
GetEnumerator | (Inherited from Collection<SqlParameter>.) | |
GetHashCode | (Inherited from Object.) | |
GetType | (Inherited from Object.) | |
IndexOf | (Inherited from Collection<SqlParameter>.) | |
Insert | (Inherited from Collection<SqlParameter>.) | |
InsertItem | (Inherited from Collection<SqlParameter>.) | |
MemberwiseClone | (Inherited from Object.) | |
Remove | (Inherited from Collection<SqlParameter>.) | |
RemoveAt | (Inherited from Collection<SqlParameter>.) | |
RemoveItem | (Inherited from Collection<SqlParameter>.) | |
SetItem | (Inherited from Collection<SqlParameter>.) | |
ToString | (Inherited from Object.) |
Top
Explicit Interface Implementations
Name | Description | |
---|---|---|
IList.Add | (Inherited from Collection<SqlParameter>.) | |
IList.Contains | (Inherited from Collection<SqlParameter>.) | |
ICollection.CopyTo | (Inherited from Collection<SqlParameter>.) | |
IEnumerable.GetEnumerator | (Inherited from Collection<SqlParameter>.) | |
IList.IndexOf | (Inherited from Collection<SqlParameter>.) | |
IList.Insert | (Inherited from Collection<SqlParameter>.) | |
IList.IsFixedSize | (Inherited from Collection<SqlParameter>.) | |
ICollection<T>.IsReadOnly | (Inherited from Collection<SqlParameter>.) | |
IList.IsReadOnly | (Inherited from Collection<SqlParameter>.) | |
ICollection.IsSynchronized | (Inherited from Collection<SqlParameter>.) | |
IList.Item | (Inherited from Collection<SqlParameter>.) | |
IList.Remove | (Inherited from Collection<SqlParameter>.) | |
ICollection.SyncRoot | (Inherited from Collection<SqlParameter>.) |
Top
Remarks
This class is used to represent the collection of filter parameters that are used to control which items are enumerated from a parameter-based filter.
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.Synchronization.Data.SqlServer Namespace
Other Resources
How to: Filter Data for Database Synchronization (SQL Server)