Triplet Class
Provides a basic utility class that is used to store three related objects.
Assembly: System.Web (in System.Web.dll)
The Triplet type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Triplet() | Initializes a new instance of the Triplet class. |
![]() | Triplet(Object, Object) | Initializes a new instance of the Triplet class and sets the first two objects. |
![]() | Triplet(Object, Object, Object) | Initializes a new instance of the Triplet class with the provided three objects. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The Triplet class is used as a basic structure to store three related objects. It is a utility class that is used in various ways throughout ASP.NET. You can use the Triplet class in your own code anywhere that you need a structure to contain three related objects and where data-hiding is not essential. The Triplet class does not encapsulate its object references, First, Second, and Third, in properties; it exposes them directly to all calling code as public class fields.
The following example uses a Triplet object to hold three integer values and another Triplet to hold three label controls.
Note |
|---|
When accessing reference types as members of a Triplet, only generic Object methods are available for that member. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.



Note