Share via


TrustPolicyStringCollection.Item Property (Int32)

 

Gets or sets the string at the specified index.

Namespace:   System.Web.Security.SingleSignOn
Assembly:  System.Web.Security.SingleSignOn (in System.Web.Security.SingleSignOn.dll)

Syntax

public string this[
    int index
] { get; set; }
public:
property String^ default[
    int index
] {
    String^ get(int index);
    void set(int index, String^ value);
}
member Item : 
        index:int -> string with get, set
Public Property Item (
    index As Integer
) As String

Parameters

  • index
    Type: System.Int32

    The zero-based index of the string to get or set.

Property Value

Type: System.String

The string at the specified index.

See Also

TrustPolicyStringCollection Class
System.Web.Security.SingleSignOn Namespace

Return to top