MessageInterceptor Class

3/29/2010

Raises an event when an arriving SMS message satisfies the interception rule condition.

Namespace: Microsoft.WindowsMobile.PocketOutlook.MessageInterception
Assembly: Microsoft.WindowsMobile.PocketOutlook (in microsoft.windowsmobile.pocketoutlook.dll)

Syntax

public class MessageInterceptor : IDisposable, IApplicationLauncher
'Declaration
Public Class MessageInterceptor
    Implements IDisposable, IApplicationLauncher

Remarks

When defining an instance of MessageInterceptor that is going to handle the MessageReceived event, make sure that the instance is defined globally in the class where the event will be handled. If it is defined in a method, it will be up for garbage collection after it goes out of scope.

public class InterceptorClass
{
    MessageInterceptor interceptor; // defined globally to class
    private void Form1_Load(object sender, EventArgs e)
    {
        // MessageInterceptor interceptor;  // This instance will go out of scope if defined here

        interceptor = new MessageInterceptor(ruleName);
        interceptor.MessageReceived += new MessageInterceptorEventHandler(interceptor_MessageReceived);
    }
}

Inheritance Hierarchy

System.Object
  Microsoft.WindowsMobile.PocketOutlook.MessageInterception.MessageInterceptor

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.

See Also

Reference

MessageInterceptor Members
Microsoft.WindowsMobile.PocketOutlook.MessageInterception Namespace