Share via


Uri Property

Uri Property

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release. The Uniform Resource Identifier (URI) of the selected folder.

Applies to

SelectionEventArgs Class

Syntax

Visual Basic .NET

Property Uri As String

C#

string Uri

Remarks

This property is read-only.

Examples

Visual Basic .NET

The following example shows a Selection Event handler function that displays the URI of the selected folder.

Private Sub OnSelection(ByVal o As Object, ByVal e As EventArgs) Handles treeView.Selection

     ' Declare the SelectionEventArgs object.
     Dim evtArgs As SelectionEventArgs

     ' Cast e to a SelectionEventArgs object.
     evtArgs = CType(e, SelectionEventArgs)

     Debug.WriteLine("Selected folder uri: " + evtArgs.Uri)

End Sub

C#

The following example shows a Selection Event handler function that displays the URI of the selected folder.

void OnSelection(object o, EventArgs e )
{
     // Cast e to a SelectionEventArgs object.
     SelectionEventArgs evtArgs = (SelectionEventArgs)e;

     Debug.WriteLine("Selected folder uri: " + evtArgs.Uri);

}

Send us your feedback about the Microsoft Exchange Server 2003 SDK.

Build: June 2007 (2007.618.1)

© 2003-2006 Microsoft Corporation. All rights reserved. Terms of use.