TransformChain.Item Property

Gets a System.Security.Cryptography.Xml.Transform instance residing in the specific index in the current chain.

Namespace: Microsoft.Web.Services2.Security
Assembly: Microsoft.Web.Services2 (in microsoft.web.services2.dll)

Usage

'Usage
Dim transformChain1 As TransformChain

Dim key As Integer
Dim returnValue As Transform
returnValue = transformChain1.Item(key)

Syntax

'Declaration
Public ReadOnly Property Item( _
    ByVal index As Integer _
) As Transform
public Transform this[
    int index
] {get;}
public: property Transform^ Item{
    Transform^ get();
}
public Transform get_Item(
    int index
);
In JScript, you can use Indexed Properties defined by a class, but you cannot define your own.

Parameters

  • index
    An integer that is used to retrieve a System.Security.Cryptography.Xml.Transform instance from a specific position.

Property Value

A System.Security.Cryptography.Xml.Transform instance resided in the specific index in the current chain.

Exceptions

Exception type Condition
System.ArgumentException

indexis larger than Count .

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.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows Longhorn, and Windows 2000

Target Platforms

Windows 2000, Windows 2000 Server, Windows 2000 Advanced Server, Windows XP Home Edition, Windows XP Professional, Windows Server 2003, Windows Longhorn, Pocket PC, Windows CE, Smart Phone

See Also

Reference

TransformChain Class
Microsoft.Web.Services2.Security Namespace

Other Resources

TransformChain Members