UIDLManager.FindLocalFile Method


Searches specified UIDLItem by local file name.

[Visual Basic]
Public Function FindLocalFile( _
    FileName As String _
) As UIDLItem
[C#]
public UIDLItem FindLocalFile(
    string FileName
);
[C++]
public: UIDLItem^ FindLocalFile(
    String ^FileName
);
[JScript]
public function FindLocalFile( 
    FileName: String
):  UIDLItem;

Parameters

FileName
The associated file name to find.

Return Value

The UIDLItem instance that is found.

Remarks

When you call AddUIDL method, you can put any string to FileName parameter. Then you can use this value to find the UIDLItem that you added.

See Also

MailInfo.UIDL Property

Online Tutorials

Using UIDL Function to Mark the Email has been downloaded/read in C# - Tutorial
Using UIDL Function to Mark the Email has been downloaded/read in VB.NET - Tutorial
Using UIDL Function to Mark the Email has been downloaded/read C++/CLI - Tutorial