NServiceBus.PerformanceMonitorUsersInstaller.IsGroupDoesNotExistError C# (CSharp) Method

IsGroupDoesNotExistError() static private method

static private IsGroupDoesNotExistError ( string error ) : bool
error string
return bool
        static bool IsGroupDoesNotExistError(string error)
        {
            //required since 'Performance Monitor Users' does not exist on all windows OS.
            return error.Contains("1376");
        }