SyncParameterCollection Class

A collection of SyncParameter objects.

Inheritance Hierarchy

System.Object
  System.Collections.ObjectModel.Collection<SyncParameter>
    Microsoft.Synchronization.Data.SyncParameterCollection

Namespace:  Microsoft.Synchronization.Data
Assembly:  Microsoft.Synchronization.Data (in Microsoft.Synchronization.Data.dll)

Syntax

'Declaration
<SerializableAttribute> _
Public NotInheritable Class SyncParameterCollection _
    Inherits Collection(Of SyncParameter)
'Usage
Dim instance As SyncParameterCollection
[SerializableAttribute]
public sealed class SyncParameterCollection : Collection<SyncParameter>
[SerializableAttribute]
public ref class SyncParameterCollection sealed : public Collection<SyncParameter^>
[<SealedAttribute>]
[<SerializableAttribute>]
type SyncParameterCollection =  
    class
        inherit Collection<SyncParameter>
    end
public final class SyncParameterCollection extends Collection<SyncParameter>

The SyncParameterCollection type exposes the following members.

Constructors

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

Top

Properties

  Name Description
Public property Count (Inherited from Collection<SyncParameter>.)
Public property Item[Int32] (Inherited from Collection<SyncParameter>.)
Public property Item[String] Gets a SyncParameter object from the collection when given a parameter name.
Protected property Items (Inherited from Collection<SyncParameter>.)

Top

Methods

  Name Description
Public method Add(T) (Inherited from Collection<SyncParameter>.)
Public method Add(String, Object) Adds a SyncParameter to the end of the collection when given a parameter name and value.
Public method Clear (Inherited from Collection<SyncParameter>.)
Protected method ClearItems (Inherited from Collection<SyncParameter>.)
Public method Contains(String) Determines whether a SyncParameter object with the specified name is in the collection.
Public method Contains(T) (Inherited from Collection<SyncParameter>.)
Public method CopyTo (Inherited from Collection<SyncParameter>.)
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetEnumerator (Inherited from Collection<SyncParameter>.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Public method IndexOf(String) Searches for a SyncParameter object when given a parameter name, and returns the zero-based index of the first occurrence within the entire collection.
Public method IndexOf(T) (Inherited from Collection<SyncParameter>.)
Public method Insert (Inherited from Collection<SyncParameter>.)
Protected method InsertItem (Inherited from Collection<SyncParameter>.)
Protected method MemberwiseClone (Inherited from Object.)
Public method Remove(String) Removes the first occurrence of a SyncParameter object from the collection when given a parameter name.
Public method Remove(T) (Inherited from Collection<SyncParameter>.)
Public method RemoveAt (Inherited from Collection<SyncParameter>.)
Protected method RemoveItem (Inherited from Collection<SyncParameter>.)
Protected method SetItem (Inherited from Collection<SyncParameter>.)
Public method ToString (Inherited from Object.)

Top

Explicit Interface Implementations

  Name Description
Explicit interface implemetationPrivate method IList.Add (Inherited from Collection<SyncParameter>.)
Explicit interface implemetationPrivate method IList.Contains (Inherited from Collection<SyncParameter>.)
Explicit interface implemetationPrivate method ICollection.CopyTo (Inherited from Collection<SyncParameter>.)
Explicit interface implemetationPrivate method IEnumerable.GetEnumerator (Inherited from Collection<SyncParameter>.)
Explicit interface implemetationPrivate method IList.IndexOf (Inherited from Collection<SyncParameter>.)
Explicit interface implemetationPrivate method IList.Insert (Inherited from Collection<SyncParameter>.)
Explicit interface implemetationPrivate property IList.IsFixedSize (Inherited from Collection<SyncParameter>.)
Explicit interface implemetationPrivate property ICollection<T>.IsReadOnly (Inherited from Collection<SyncParameter>.)
Explicit interface implemetationPrivate property IList.IsReadOnly (Inherited from Collection<SyncParameter>.)
Explicit interface implemetationPrivate property ICollection.IsSynchronized (Inherited from Collection<SyncParameter>.)
Explicit interface implemetationPrivate property IList.Item (Inherited from Collection<SyncParameter>.)
Explicit interface implemetationPrivate method IList.Remove (Inherited from Collection<SyncParameter>.)
Explicit interface implemetationPrivate property ICollection.SyncRoot (Inherited from Collection<SyncParameter>.)

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.Synchronization.Data Namespace