I have just downloaded source code from SVN, when I build in VS2005(.Net
2.0), has error at FbTransactionOptions. TransactionBehavior, should has
implement

public struct FbTransactionOptions
    {
        private short? _waitTimeout;
        public short? WaitTimeout
        {
            get { return _waitTimeout; }
            set
            {
                if (value < 1)
                    throw new ArgumentException("The property value assigned
is less than 1.");
                
                _waitTimeout = value;
            }
        }

        public FbTransactionBehavior TransactionBehavior { get; set; }
    }


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Firebird-net-provider mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to