Elmah.MySqlErrorLog.Commands.GetErrorsXmlOutputs C# (CSharp) Méthode

GetErrorsXmlOutputs() public static méthode

public static GetErrorsXmlOutputs ( MySqlCommand command, int &totalCount ) : void
command MySql.Data.MySqlClient.MySqlCommand
totalCount int
Résultat void
            public static void GetErrorsXmlOutputs(MySqlCommand command, out int totalCount)
            {
                Debug.Assert(command != null);

                totalCount = (int)command.Parameters["TotalCount"].Value;
            }
        }