The samples in the SDK and documentation are mostly in VB.
I am using the .NET (C#) classes.
The documentation refers to error codes such as pseSERVERIDMISMATCH that can be generated during call to Open.
How does one catch/manage/use these codes in c#.
Is the error caught through a try/catch exception handling?
Or is it generated though the server.MessageLogs?
It seems like it should be
if !server.Open.(connectionString))
{
err - server.GetLastErrorMessage();
}
I don't see anything that resemblies this.
I did see a property server.MessageLogs.List(.....)
But its hard to identify which of the messages in the queu belong to this request.
Any comments on how to manage error conditions would be grealy appreciated.
Rick